We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 604f573 commit 167da26Copy full SHA for 167da26
.github/workflows/tests.yml
@@ -13,6 +13,7 @@ jobs:
13
fail-fast: false
14
matrix:
15
python-version: ["3.10", "3.11", "3.12"]
16
+ dask-version: ["2025.5.0", "2025.7.0", "2025.11.0"]
17
18
steps:
19
- uses: actions/checkout@v4
@@ -23,6 +24,7 @@ jobs:
23
24
- name: Install dependencies
25
run: |
26
python -m pip install --upgrade pip
27
+ python -m pip install dask==${{ matrix.dask-version }} distributed==${{ matrix.dask-version }}
28
python -m pip install .
29
python -m pip install .[test]
30
- name: Test with pytest
0 commit comments