Merge pull request #1066 from consideRatio/pr/fix-depdency-issues

Workaround docker-py dependency's failure to import six
pull/1055/head
Simon Li 2021-07-28 21:46:49 +01:00 zatwierdzone przez GitHub
commit efc37c4c5b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -11,6 +11,7 @@ RUN mkdir /tmp/wheelhouse \
&& cd /tmp/wheelhouse \
&& pip3 install wheel \
&& pip3 wheel --no-cache-dir /tmp/src \
&& rm /tmp/wheelhouse/six*.whl \
&& ls -l /tmp/wheelhouse
FROM alpine:${ALPINE_VERSION}

Wyświetl plik

@ -48,7 +48,7 @@ setup(
version=versioneer.get_version(),
install_requires=[
"chardet",
"docker",
"docker!=5.0.0",
"entrypoints",
"escapism",
"iso8601",