Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 3 additions & 7 deletions continuous_integration/environment-3.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies:
- ipykernel
- ipywidgets
- jinja2
- jupyter_events<0.11
- jupyter_events
- jupyter-server-proxy
- jupyterlab
- locket
Expand All @@ -33,7 +33,7 @@ dependencies:
- psutil
- pyarrow
- nvidia-ml-py # Only tested here
- pytest<8.4 # Pin due to https://github.com/pytest-dev/pytest-cov/issues/693
- pytest
- pytest-cov
- pytest-faulthandler
- pytest-repeat
Expand All @@ -45,16 +45,12 @@ dependencies:
- scikit-learn
- scipy
- sortedcollections
- tblib !=3.2.0,!=3.2.1
- tblib
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've left the exclusion in pyproject.toml and meta.yaml, as it's still a healthy idea to force upgrade tblib if found in the wild.

- toolz
- torchvision # Only tested here
- tornado
- zict # overridden by git tip below
- zstandard
# Temporary fix for https://github.com/pypa/setuptools/issues/4496
- setuptools < 71
# Temporary fix for https://github.com/jupyterlab/jupyterlab/issues/17012
- httpx<0.28.0
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/dask/zict
Expand Down
10 changes: 3 additions & 7 deletions continuous_integration/environment-3.11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- ipykernel
- ipywidgets
- jinja2
- jupyter_events<0.11
- jupyter_events
- jupyter-server-proxy
- jupyterlab
- locket
Expand All @@ -29,7 +29,7 @@ dependencies:
- prometheus_client
- psutil
- pyarrow=14
- pytest<8.4 # Pin due to https://github.com/pytest-dev/pytest-cov/issues/693
- pytest
- pytest-cov
- pytest-faulthandler
- pytest-repeat
Expand All @@ -39,15 +39,11 @@ dependencies:
- scikit-learn
- scipy
- sortedcollections
- tblib !=3.2.0,!=3.2.1
- tblib
- toolz
- tornado
- zict # overridden by git tip below
- zstandard
# Temporary fix for https://github.com/pypa/setuptools/issues/4496
- setuptools < 71
# Temporary fix for https://github.com/jupyterlab/jupyterlab/issues/17012
- httpx<0.28.0
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/dask/zict
Expand Down
10 changes: 3 additions & 7 deletions continuous_integration/environment-3.12.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- ipykernel
- ipywidgets
- jinja2
- jupyter_events<0.11
- jupyter_events
- jupyter-server-proxy
- jupyterlab
- locket
Expand All @@ -29,7 +29,7 @@ dependencies:
- prometheus_client
- psutil
- pyarrow
- pytest<8.4 # Pin due to https://github.com/pytest-dev/pytest-cov/issues/693
- pytest
- pytest-cov
- pytest-faulthandler
- pytest-repeat
Expand All @@ -39,15 +39,11 @@ dependencies:
- scikit-learn
- scipy
- sortedcollections
- tblib !=3.2.0,!=3.2.1
- tblib
- toolz
- tornado
- zict # overridden by git tip below
- zstandard
# Temporary fix for https://github.com/pypa/setuptools/issues/4496
- setuptools < 71
# Temporary fix for https://github.com/jupyterlab/jupyterlab/issues/17012
- httpx<0.28.0
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/dask/zict
Expand Down
10 changes: 3 additions & 7 deletions continuous_integration/environment-3.13.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
- ipykernel
- ipywidgets
- jinja2
- jupyter_events<0.11
- jupyter_events
- jupyter-server-proxy
- jupyterlab
- locket
Expand All @@ -28,7 +28,7 @@ dependencies:
- prometheus_client
- psutil
- pyarrow
- pytest<8.4 # Pin due to https://github.com/pytest-dev/pytest-cov/issues/693
- pytest
- pytest-cov
- pytest-faulthandler
- pytest-repeat
Expand All @@ -38,15 +38,11 @@ dependencies:
- scikit-learn
- scipy
- sortedcollections
- tblib !=3.2.0,!=3.2.1
- tblib
- toolz
- tornado
- zict # overridden by git tip below
- zstandard
# Temporary fix for https://github.com/pypa/setuptools/issues/4496
- setuptools < 71
# Temporary fix for https://github.com/jupyterlab/jupyterlab/issues/17012
- httpx<0.28.0
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/dask/zict
Expand Down
6 changes: 3 additions & 3 deletions continuous_integration/environment-mindeps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ dependencies:
- locket=1.0.0
- msgpack-python=1.0.2
- packaging=20.0
- pyparsing<3.3 # Newer versions of pyparsing drop old versions of packaging
- pyparsing<3.3 # Newer versions of pyparsing break with old versions of packaging
- setuptools<71 # Newer versions of setuptools break with packaging<24
# https://github.com/pypa/setuptools/issues/4496
- psutil=5.8.0
- pyyaml=5.4.1
- sortedcontainers=2.0.5
Expand All @@ -19,8 +21,6 @@ dependencies:
- tornado=6.2.0
- urllib3=1.26.5
- zict=3.0.0
# Temporary fix for https://github.com/pypa/setuptools/issues/4496
- setuptools < 71
# Distributed depends on the latest version of Dask
- pip
- pip:
Expand Down
Loading