Skip to content

Commit

Permalink
CI: Fix "full" Docker image re. installation of wradlib
Browse files Browse the repository at this point in the history
It is unfortunate that we install wradlib separately here. We want to
improve it on another iteration.
  • Loading branch information
amotl committed Feb 16, 2023
1 parent 0b6139c commit 8831ae1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/release/full/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apt-get update && \
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.11 0

# Install wradlib.
RUN python -m pip install --no-cache-dir --prefer-binary --no-deps wradlib
RUN python -m pip install --no-cache-dir --prefer-binary --no-deps wradlib==1.18.0

# Install Wetterdienst.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ set -x
if [ "${flavor}" = "testing" ]; then

poetry install --verbose --no-interaction --with=test,dev --extras=sql --extras=export --extras=restapi --extras=explorer --extras=interpolation --extras=ipython
poetry run pip install --verbose --no-input --no-deps wradlib
poetry run pip install --verbose --no-input --no-deps wradlib==1.18.0

# Wheels for `h5py` not available for cp311 yet.
poetry run python -c 'import sys; sys.exit(not sys.version_info < (3, 11))' \
Expand Down

0 comments on commit 8831ae1

Please sign in to comment.