Skip to content

Commit

Permalink
Merge pull request #1248 from scikit-hep/cap-dask-broken-again
Browse files Browse the repository at this point in the history
fix: cap dask below 2025
  • Loading branch information
lgray authored Jan 21, 2025
2 parents 9b39bae + edae3a0 commit fde6cc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
run: |
conda create --yes --prefix ./coffea-conda-test-env -c conda-forge python=${{ matrix.python-version }} ndcctools uv
conda activate ./coffea-conda-test-env
uv pip install --system . 'dask<2024.12.0'
uv pip install --system . 'dask<2025.1.0'
uv pip install --system pytest
- name: Test with pytest
run: |
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ classifiers = [
dependencies = [
"awkward>=2.6.7",
"uproot>=5.3.11",
"dask[array]>=2024.3.0;python_version>'3.8'",
"dask[array]>=2023.4.0;python_version<'3.9'",
"dask[array]>=2024.3.0,<2025.1.0",
"dask-awkward>=2024.9.0",
"dask-histogram>=2024.9.1",
"vector>=1.4.1",
Expand Down Expand Up @@ -71,8 +70,7 @@ Homepage = "https://github.com/coffeateam/coffea"

[project.optional-dependencies]
dask = [
"distributed>=2024.3.0;python_version>'3.8'",
"distributed>=2023.4.0;python_version<'3.9'",
"distributed>=2024.3.0",
"bokeh!=3.0.*,>=2.4.2",
]
spark = [
Expand Down

0 comments on commit fde6cc1

Please sign in to comment.