Skip to content

Commit

Permalink
specify python conditional numba version
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu committed Dec 22, 2024
1 parent 738542f commit 8db81d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
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"
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,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 8db81d7

Please sign in to comment.