Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relax dependencies #324

Merged
merged 13 commits into from
Nov 1, 2024
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ History
0.3.8 (2024-09-29)
------------------
* Upgrade readthedocs to PyData Sphinx Theme (:pr:`323`)
* Upgrade backend to poetry (:pr:`322`)
* Upgrade backend to poetry (:pr:`322`, :pr:`324`)
* Optimise the beam cube implementation (:pr:`320`)
* Support an `init_state` argument into both `Term.init_fields`
and `Transformer.init_fields` (:pr:`319`)
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.rst"
python = "^3.10"
pytest = {version = "^8.0.0", optional = true}
flaky = {version = "^3.8.1", optional = true}
dask = {extras = ["array"], optional = true, version = "^2024.10.0"}
dask = {extras = ["array"], optional = true, version = "^2024.0"}
jax = {version = "^0.4.35", optional = true}
jaxlib = {version = "^0.4.35", optional = true}
scipy = {version = "^1.14.1", optional = true}
Expand All @@ -21,8 +21,8 @@ cupy = {version = "^13.3.0", optional = true}
jinja2 = {version = "^3.1.4", optional = true}
appdirs = "^1.4.4"
decorator = "^5.1.1"
numpy = ">=2.0.0"
numba = "^0.60.0"
numpy = "^2.0"
numba = "^0.60"

[tool.poetry.extras]
astropy = ["astropy"]
Expand Down