Skip to content

Commit

Permalink
fix: increase python upper bound to include python 3.13 for `arize-ph…
Browse files Browse the repository at this point in the history
…oenix-evals` and `arize-phoenix-otel` (#5077)
  • Loading branch information
RogerHYang authored Oct 17, 2024
1 parent 83dd769 commit ef5c893
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
if: ${{ needs.changes.outputs.phoenix_otel == 'true' }}
strategy:
matrix:
py: [3.8, 3.12]
py: [3.8, 3.13]
os: [ubuntu-latest, windows-latest, macos-13]
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion packages/phoenix-evals/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "arize-phoenix-evals"
description = "LLM Evaluations"
readme = "README.md"
requires-python = ">=3.8, <3.13"
requires-python = ">=3.8, <3.14"
license = {text="Elastic-2.0"}
license-files = { paths = ["LICENSE", "IP_NOTICE"] }
keywords = [
Expand All @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
version = "0.17.0"
dependencies = [
Expand Down
3 changes: 2 additions & 1 deletion packages/phoenix-otel/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "arize-phoenix-otel"
description = "LLM Observability"
readme = "README.md"
requires-python = ">=3.8, <3.13"
requires-python = ">=3.8, <3.14"
license = {text="Elastic-2.0"}
license-files = { paths = ["LICENSE", "IP_NOTICE"] }
keywords = [
Expand All @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
version = "0.6.0"
dependencies = [
Expand Down

0 comments on commit ef5c893

Please sign in to comment.