Skip to content

Commit a5d31d4

Browse files
committed
ci: bump pip, install contourpy and pandas via conda-forge
1 parent e7f85d4 commit a5d31d4

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

continuous_integration/docker/hadoop/_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cd /working
66
# FIXME: pip should be installed to a modern version in the base image instead
77
# of being upgraded here. It isn't because of
88
# https://github.com/dask/dask-gateway/issues/837.
9-
pip install "pip==24.*"
9+
pip install "pip==26.*"
1010

1111
# pykerberos needs to compile c++ code that depends on system libraries, by
1212
# installing it from conda-forge, we avoid such hassle.

continuous_integration/docker/pbs/_install.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ cd /working
66
# FIXME: pip should be installed to a modern version in the base image instead
77
# of being upgraded here. It isn't because of
88
# https://github.com/dask/dask-gateway/issues/837.
9-
pip install "pip==24.*"
9+
pip install "pip==26.*"
10+
11+
# some packages needs to compile c++ code that depends on system libraries, by
12+
# installing it from conda-forge, we avoid such hassle.
13+
#
14+
mamba install -c conda-forge contourpy pandas greenlet
1015

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

continuous_integration/docker/slurm/_install.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ cd /working
66
# FIXME: pip should be installed to a modern version in the base image instead
77
# of being upgraded here. It isn't because of
88
# https://github.com/dask/dask-gateway/issues/837.
9-
pip install "pip==24.*"
9+
pip install "pip==26.*"
10+
11+
# some packages needs to compile c++ code that depends on system libraries, by
12+
# installing it from conda-forge, we avoid such hassle.
13+
#
14+
mamba install -c conda-forge contourpy pandas greenlet
1015

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

0 commit comments

Comments
 (0)