Skip to content

Commit

Permalink
Update dask-ms to 0.2.16 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins authored May 31, 2023
1 parent 6fff2d2 commit 18b1305
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 27 deletions.
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,12 @@ shadems = {reference = "bin/shadems", type = "file"}
[tool.poetry.dependencies]
python = "^3.8"
datashader = "^0.13.0"
dask-ms = { version = "^0.2.15", extras = ["xarray"] }
dask-ms = { version = "^0.2.16", extras = ["xarray"] }
holoviews = "^1.14.9"
matplotlib = { version = "^3.6.0" }
cmasher = "^1.6.3"
future-fstrings = "^1.2.0"
requests = "^2.27.1"
numpy = "1.23.5" # Datashader installs the latest numpy which is in conflict with <=1.35.5 required by numba
dask = { extras = ["array"], version = "2022.9.1" } # Datashader installs the latest dask which is in conflict with <2023.0.0 required by dask-ms[array]
pytest = { version = "^7.2.2", optional=true }
pytest-flake8 = { version = "^1.1.1", optional=true }

Expand Down
2 changes: 1 addition & 1 deletion shade_ms/tests/test_dask_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_dataframe_factory_multicol():
assert_array_equal(df['c0'].min(), data1c.min())
assert_array_equal(df['c0'].max(), data1c.max())

df = df.append(df)
df = dd.multi.concat([df, df])

assert_array_equal(df['x'].min(), data1a.min())
assert_array_equal(df['x'].max(), data1a.max())
Expand Down
23 changes: 0 additions & 23 deletions test-dataframe-factory.py

This file was deleted.

0 comments on commit 18b1305

Please sign in to comment.