Skip to content

Commit

Permalink
ci: upgrade pip in test images so sqlalchemy etc gets installed (#838)
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio authored Jan 20, 2025
1 parent 7652232 commit 9b62306
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions continuous_integration/docker/hadoop/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ set -xe

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.*"

# pykerberos needs to compile c++ code that depends on system libraries, by
# installing it from conda-forge, we avoid such hassle.
#
Expand Down
5 changes: 5 additions & 0 deletions continuous_integration/docker/pbs/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ set -xe

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.*"

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

Expand Down
5 changes: 5 additions & 0 deletions continuous_integration/docker/slurm/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ set -xe

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.*"

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

Expand Down

0 comments on commit 9b62306

Please sign in to comment.