Skip to content

Commit eba7323

Browse files
committed
jobqueue optional for now
1 parent 08439fa commit eba7323

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

pyproject.toml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "arrakis"
3-
version = "2.3.8"
3+
version = "0.0.0" # A placeholder
44
description = "Processing the SPICE."
55
homepage = "https://research.csiro.au/racs/"
66
repository = "https://github.com/AlecThomson/arrakis"
@@ -31,8 +31,8 @@ astropy = ">=5"
3131
bilby = "*"
3232
ConfigArgParse = "*"
3333
dask = "*"
34-
distributed = {git="https://github.com/AlecThomson/distributed@drainclose"}
35-
dask_jobqueue = "*"
34+
distributed = {git="https://github.com/AlecThomson/distributed", branch="drainclose"}
35+
dask_jobqueue = {version=">=0.8.3", optional=true}
3636
dask_mpi = "*"
3737
FRion = ">=1.1.3"
3838
h5py = "*"
@@ -87,10 +87,14 @@ docs = [
8787
"sphinxcontrib-mermaid",
8888
]
8989
RMextract = ["RMextract"]
90+
jobqueue = ["dask_jobqueue"]
91+
92+
[tool.poetry-dynamic-versioning]
93+
enable = true
9094

9195
[build-system]
92-
requires = ["poetry-core>=1.2", "numpy"]
93-
build-backend = "poetry.core.masonry.api"
96+
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0", "numpy"]
97+
build-backend = "poetry_dynamic_versioning.backend"
9498

9599
[tool.poetry.scripts]
96100
spice_init = "arrakis.init_database:cli"

0 commit comments

Comments
 (0)