diff --git a/mise.toml b/mise.toml index 2854b1d..0fe0947 100644 --- a/mise.toml +++ b/mise.toml @@ -1,6 +1,6 @@ [tools] poetry = { version = 'latest', pyproject = 'pyproject.toml' } -python = '3.12' +python = '3.13' [env] _.python.venv = ".venv" diff --git a/pyproject.toml b/pyproject.toml index 7e86f3b..19e6785 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"