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
2 changes: 1 addition & 1 deletion continuous_integration/docker/hadoop/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd /working
# FIXME: pip should be installed to a modern version in the base image instead
# of being upgraded here. It isn't because of
# https://github.com/dask/dask-gateway/issues/837.
pip install "pip==24.*"
pip install "pip==26.*"

# pykerberos needs to compile c++ code that depends on system libraries, by
# installing it from conda-forge, we avoid such hassle.
Expand Down
7 changes: 6 additions & 1 deletion continuous_integration/docker/pbs/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ cd /working
# FIXME: pip should be installed to a modern version in the base image instead
# of being upgraded here. It isn't because of
# https://github.com/dask/dask-gateway/issues/837.
pip install "pip==24.*"
pip install "pip==26.*"

# some packages needs to compile c++ code that depends on system libraries, by
# installing it from conda-forge, we avoid such hassle.
#
mamba install -c conda-forge contourpy pandas greenlet

# This installs everything we need for tests
pip install -r tests/requirements.txt
Expand Down
7 changes: 6 additions & 1 deletion continuous_integration/docker/slurm/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ cd /working
# FIXME: pip should be installed to a modern version in the base image instead
# of being upgraded here. It isn't because of
# https://github.com/dask/dask-gateway/issues/837.
pip install "pip==24.*"
pip install "pip==26.*"

# some packages needs to compile c++ code that depends on system libraries, by
# installing it from conda-forge, we avoid such hassle.
#
mamba install -c conda-forge contourpy pandas greenlet

# This installs everything we need for tests
pip install -r tests/requirements.txt
Expand Down