diff --git a/HISTORY.rst b/HISTORY.rst index 74b4090e..bbea679a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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`) diff --git a/daskms/tests/test_fsspec_store.py b/daskms/tests/test_fsspec_store.py index e8e2f3b7..e37fd3e7 100644 --- a/daskms/tests/test_fsspec_store.py +++ b/daskms/tests/test_fsspec_store.py @@ -146,7 +146,6 @@ def test_storage_options_from_config( "client_kwargs": { "endpoint_url": minio_url, "region_name": "af-south-1", - "verify": False, }, } diff --git a/pyproject.toml b/pyproject.toml index ad2a58f5..c47eb627 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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}