Skip to content

Commit

Permalink
Constrain dask versions (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins authored Apr 4, 2024
1 parent 5d37bfe commit 5cc48da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ History

X.Y.Z (YYYY-MM-DD)
------------------
* Constrain dask versions (:pr:`34`)
* Specify dtype during chunk normalisation (:pr:`33`)
* Configure dependabot for github actions (:pr:`28`)

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.9"
astropy = "^6.0.0"
dask = {extras = ["array"], version = "^2024.3.1"}
dask = {extras = ["array"], version = ">= 2024.1.0, < 2024.2.0"}
xarray = "^2024.2.0"
pytest = {version = "^8.1.1", optional = true, extras = ["testing"]}
distributed = {version = "^2024.3.1", optional = true, extras = ["testing"]}
distributed = {version = ">= 2024.1.0, < 2024.2.0", optional = true, extras = ["testing"]}
fsspec = "^2024.3.0"

[tool.poetry.extras]
Expand Down

0 comments on commit 5cc48da

Please sign in to comment.