Skip to content

Commit d36fc3c

Browse files
authored
Bump pandas to 2.0 in mindeps build (#8743)
1 parent 63e5108 commit d36fc3c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ jobs:
8383
- os: ubuntu-latest
8484
environment: mindeps
8585
label: pandas
86-
extra_packages: [numpy=1.21, pandas=1.3, pyarrow=7, pyarrow-hotfix]
86+
extra_packages: [numpy=1.21, pandas=2.0, pyarrow=7, pyarrow-hotfix]
8787
partition: "ci1"
8888
- os: ubuntu-latest
8989
environment: mindeps
9090
label: pandas
91-
extra_packages: [numpy=1.21, pandas=1.3, pyarrow=7, pyarrow-hotfix]
91+
extra_packages: [numpy=1.21, pandas=2.0, pyarrow=7, pyarrow-hotfix]
9292
partition: "not ci1"
9393

9494
- os: ubuntu-latest

distributed/protocol/tests/test_highlevelgraph.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
np = pytest.importorskip("numpy")
88
pd = pytest.importorskip("pandas")
9+
dd = pytest.importorskip("dask.dataframe")
10+
da = pytest.importorskip("dask.array")
911

1012
from numpy.testing import assert_array_equal
1113

1214
import dask
13-
import dask.array as da
14-
import dask.dataframe as dd
1515

1616
from distributed.diagnostics import SchedulerPlugin
1717
from distributed.utils_test import gen_cluster

0 commit comments

Comments
 (0)