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

compat: Dask 2024.11 #766

Merged
merged 7 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from 6 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
7 changes: 0 additions & 7 deletions geoviews/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,3 @@ def pytest_collection_modifyitems(config, items):
import matplotlib.pyplot as plt

plt.switch_backend("agg")

with suppress(Exception):
# From Dask 2024.3.0 they now use `dask_expr` by default
# https://github.com/dask/dask/issues/10995
import dask

dask.config.set({"dataframe.query-planning": False})
1 change: 0 additions & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ sync-git-tags = 'python scripts/sync_git_tags.py geoviews'
[activation.env]
PYTHONIOENCODING = "utf-8"
USE_PYGEOS = "0"
DASK_DATAFRAME__QUERY_PLANNING = "False"

[environments]
test-310 = ["py310", "test-core", "test-unit-task", "test", "example", "test-example", "download-data"]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ filterwarnings = [
"ignore:\\s*Pyarrow will become a required dependency of pandas:DeprecationWarning", # Will go away by itself in Pandas 3.0
"ignore:Passing a (SingleBlockManager|BlockManager) to (Series|GeoSeries|DataFrame|GeoDataFrame) is deprecated:DeprecationWarning", # https://github.com/holoviz/spatialpandas/issues/137
"ignore:datetime.datetime.utcfromtimestamp():DeprecationWarning:dateutil.tz.tz", # https://github.com/dateutil/dateutil/pull/1285
# 2024-02
"ignore:The current Dask DataFrame implementation is deprecated:DeprecationWarning", # https://github.com/dask/dask/issues/10917
# 2024-03
"ignore:\\s*Dask dataframe query planning is disabled because dask-expr is not installed:FutureWarning",
"ignore:numpy.ndarray size changed, may indicate binary incompatibility:RuntimeWarning", # https://github.com/pydata/xarray/issues/7259
# 2024-11
"ignore:The legacy Dask DataFrame implementation is deprecated and will be removed in a future version.:FutureWarning", # https://github.com/dask/dask/issues/10917
ahuang11 marked this conversation as resolved.
Show resolved Hide resolved
ahuang11 marked this conversation as resolved.
Show resolved Hide resolved
]
Loading