Merge pull request #139 from paalbra/fix-138

Remove extra pluggy wheel packages
pull/1/head
Jason Kendall 2021-10-19 15:22:11 -04:00 committed by GitHub
commit c5a0feb697
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -80,6 +80,7 @@ FROM debian:buster-slim as python-build
# Remove extra packages due to incompatible requirements.txt files
WORKDIR /wheels
RUN find . -name "pluggy*" | grep -v "pluggy-0.13.1" | xargs rm -f
RUN find . -name "tox*" | grep -v "tox-2.7.0" | xargs rm -f
RUN find . -name "Sphinx*" | grep -v "Sphinx-1.8.5" | xargs rm -f