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

Update calver dependencies to use inequalities #307

Merged
merged 7 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
------------------
* Update calver dependencies to use inequality, rather than caret dependency specifiers (:pr:`307`)
* Update pre-commit to actions/python@v5.0.0 (:pr:`308`)
* Update readthedocs python version to 3.9 and poetry to 1.7.1 (:pr:`303`)
* Re-enable exceptions in multiprocessing test case (:pr:`302`)
Expand Down
1 change: 0 additions & 1 deletion daskms/tests/test_fsspec_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ def test_storage_options_from_config(
"client_kwargs": {
"endpoint_url": minio_url,
"region_name": "af-south-1",
"verify": False,
},
}

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ packages = [{include = "daskms"}]
[tool.poetry.dependencies]
python = "^3.9, < 3.13"
appdirs = "^1.4.4"
dask = {extras = ["array"], version = "^2023.1.0"}
dask = {extras = ["array"], version = ">= 2023.1.1"}
donfig = "^0.7.0"
python-casacore = "^3.5.1"
pyarrow = {version = "^14.0.1", optional = true}
zarr = {version = "^2.12.0", optional=true}
xarray = {version = "^2023.01.0", optional=true}
s3fs = {version = "^2023.1.0", optional=true}
xarray = {version = ">= 2023.01.0", optional=true}
s3fs = {version = ">= 2023.1.0", optional=true}
minio = {version = "^7.2.0", optional = true}
pytest = {version = "^7.1.3", optional=true}
pandas = {version = "^2.1.2", optional = true}
Expand Down
Loading