From ca4179dd6542d36e4d1a14061ebcf85ee5b9c552 Mon Sep 17 00:00:00 2001 From: remi-filament <30716308+remi-filament@users.noreply.github.com> Date: Wed, 2 Sep 2020 09:29:50 +0200 Subject: [PATCH] Remove limitation on setuptools since issue fixed in 50.0.3 --- 10.0.Dockerfile | 2 +- 12.0.Dockerfile | 2 +- 12.0_ml.Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/10.0.Dockerfile b/10.0.Dockerfile index 7998c24..938b401 100644 --- a/10.0.Dockerfile +++ b/10.0.Dockerfile @@ -46,7 +46,7 @@ RUN set -x; \ apt-get install -y --no-install-recommends ${APT_DEPS} &&\ curl https://bootstrap.pypa.io/get-pip.py | python /dev/stdin &&\ pip install -I -r https://raw.githubusercontent.com/OCA/OCB/10.0/requirements.txt &&\ - pip install simplejson WTForms Werkzeug==0.14.1 setuptools==5.5.1 &&\ + pip install simplejson WTForms Werkzeug==0.14.1 &&\ apt-get -y purge ${APT_DEPS} &&\ apt-get -y autoremove &&\ rm -rf /var/lib/apt/lists/* wkhtmltox.deb diff --git a/12.0.Dockerfile b/12.0.Dockerfile index c5fb60d..c6e81dc 100644 --- a/12.0.Dockerfile +++ b/12.0.Dockerfile @@ -41,7 +41,7 @@ RUN set -x; \ apt-get install -y --no-install-recommends ${APT_DEPS} &&\ curl https://bootstrap.pypa.io/get-pip.py | python3 /dev/stdin &&\ pip install -I -r https://raw.githubusercontent.com/OCA/OCB/12.0/requirements.txt &&\ - pip install simplejson WTForms zxcvbn phonenumbers Werkzeug==0.14.1 setuptools==33.1.1 &&\ + pip install simplejson WTForms zxcvbn phonenumbers Werkzeug==0.14.1 &&\ apt-get -y purge ${APT_DEPS} &&\ apt-get -y autoremove &&\ rm -rf /var/lib/apt/lists/* wkhtmltox.deb diff --git a/12.0_ml.Dockerfile b/12.0_ml.Dockerfile index ccb0a59..cc629ff 100644 --- a/12.0_ml.Dockerfile +++ b/12.0_ml.Dockerfile @@ -41,7 +41,7 @@ RUN set -x; \ apt-get install -y --no-install-recommends ${APT_DEPS} &&\ curl https://bootstrap.pypa.io/get-pip.py | python3 /dev/stdin &&\ pip install -I -r https://raw.githubusercontent.com/OCA/OCB/12.0/requirements.txt &&\ - pip install simplejson WTForms zxcvbn phonenumbers Werkzeug==0.14.1 setuptools==33.1.1 &&\ + pip install simplejson WTForms zxcvbn phonenumbers Werkzeug==0.14.1 &&\ apt-get -y purge ${APT_DEPS} &&\ apt-get -y autoremove &&\ rm -rf /var/lib/apt/lists/* wkhtmltox.deb -- GitLab