Skip to content

Commit

Permalink
Run tests in python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
simw committed Nov 5, 2024
1 parent 99f1048 commit 0d4fe8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
Expand All @@ -37,13 +38,13 @@ python = "^3.8"
pydantic = "^2.0"
pyarrow = [
{ version = ">=13.0.0,<15.0.0", python = "<3.12" },
{ version = ">=14.0.0,<15.0.0", python = ">=3.12,<3.13" },
{ version = ">=14.0.0,<15.0.0", python = ">=3.12,<3.14" },
]
# We don't have a direct numpy dependency, but pyarrow depends on numpy
# and numpy has python version constraints
numpy = [
{ version = "<1.25.0", python = "<3.9" },
{ version = "^1.26.0", python = ">=3.12,<3.13" }
{ version = "^1.26.0", python = ">=3.12,<3.14" }
]
# pydantic 2.x requires 4.6.1, so no point going lower
typing-extensions = "^4.6.1"
Expand Down

0 comments on commit 0d4fe8a

Please sign in to comment.