Skip to content

Commit

Permalink
feat: add python v3.13 support (#253)
Browse files Browse the repository at this point in the history
* add python v3.13 to `.circleci/config.yml`

* specify python conditional numba version

* update trove classifier
  • Loading branch information
eonu authored Dec 22, 2024
1 parent bad75a0 commit 7dd6a62
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
name: python/default
steps:
- coveralls/upload:
carryforward: 3.11, 3.12
carryforward: 3.11, 3.12, 3.13
parallel_finished: true

workflows:
Expand All @@ -56,7 +56,7 @@ workflows:
- tests:
matrix:
parameters:
version: ["3.11", "3.12"]
version: ["3.11", "3.12", "3.13"]
- coverage:
requires:
- tests
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tools]
poetry = { version = 'latest', pyproject = 'pyproject.toml' }
python = '3.12'
python = '3.13'

[env]
_.python.venv = ".venv"
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
Expand Down Expand Up @@ -64,8 +65,11 @@ requires = ['poetry-core~=1.0', 'Cython>=0.28.5']
build-backend = 'poetry.core.masonry.api'

[tool.poetry.dependencies]
python = "^3.11,<3.13"
numba = ">=0.56,<1"
python = "^3.11"
numba = [
{ version = ">=0.56,<1", python = "^3.11,<3.13" },
{ version = ">=0.61.0rc2", python = ">=3.13" }
]
numpy = ">=1.19.5,<3"
hmmlearn = ">=0.2.8,<1"
dtaidistance = "^2.3.10"
Expand Down

0 comments on commit 7dd6a62

Please sign in to comment.