Skip to content

Commit

Permalink
Make distributed an optional package (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins authored Mar 19, 2024
1 parent 875bb59 commit 8eb4508
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
History
=======

X.Y.Z (YYYY-MM-DD)
------------------
* Make distributed an optional package (:pr:`19`)

0.2.0 (2024-03-19)
------------------
* Update README (:pr:`18`)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ astropy = "^6.0.0"
dask = {extras = ["array"], version = "^2024.3.1"}
xarray = "^2024.2.0"
pytest = {version = "^8.1.1", optional = true, extras = ["testing"]}
distributed = {version = "^2024.3.1", extras = ["testing"]}
distributed = {version = "^2024.3.1", optional = true, extras = ["testing"]}
fsspec = "^2024.3.0"

[tool.poetry.extras]
testing = ["pytest"]
testing = ["distributed", "pytest"]

[tool.poetry.group.dev.dependencies]
tbump = "^6.9.0"
Expand Down

0 comments on commit 8eb4508

Please sign in to comment.