Skip to content

Commit

Permalink
Bump pandas to 2.0 in mindeps build (#8743)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau authored Jul 3, 2024
1 parent 63e5108 commit d36fc3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ jobs:
- os: ubuntu-latest
environment: mindeps
label: pandas
extra_packages: [numpy=1.21, pandas=1.3, pyarrow=7, pyarrow-hotfix]
extra_packages: [numpy=1.21, pandas=2.0, pyarrow=7, pyarrow-hotfix]
partition: "ci1"
- os: ubuntu-latest
environment: mindeps
label: pandas
extra_packages: [numpy=1.21, pandas=1.3, pyarrow=7, pyarrow-hotfix]
extra_packages: [numpy=1.21, pandas=2.0, pyarrow=7, pyarrow-hotfix]
partition: "not ci1"

- os: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions distributed/protocol/tests/test_highlevelgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

np = pytest.importorskip("numpy")
pd = pytest.importorskip("pandas")
dd = pytest.importorskip("dask.dataframe")
da = pytest.importorskip("dask.array")

from numpy.testing import assert_array_equal

import dask
import dask.array as da
import dask.dataframe as dd

from distributed.diagnostics import SchedulerPlugin
from distributed.utils_test import gen_cluster
Expand Down

0 comments on commit d36fc3c

Please sign in to comment.