Skip to content

Commit 77e892a

Browse files
committed
Ensure we use stuptools<82 because of ckan/ckan#9246
1 parent 9722f78 commit 77e892a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ckan-2.10/Dockerfile.py3.10

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ COPY setup/supervisord.py3.conf /etc/supervisord.conf
7474

7575
# Install uwsgi, the CKAN application, the dependency packages for CKAN plus some confiquration
7676
RUN pip3 install -U pip && \
77-
pip3 install -U "setuptools>=70.0.0" && \
77+
pip3 install -U "setuptools==81" && \
7878
pip3 install uwsgi && \
7979
cd ${SRC_DIR} && \
8080
pip3 install -e git+${GIT_URL}@${CKAN_REF}#egg=ckan && \

ckan-2.11/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ RUN mkdir -p ${SRC_DIR}
6868

6969
# Install uwsgi, the CKAN application, the dependency packages for CKAN plus some confiquration
7070
RUN pip3 install -U pip && \
71-
pip3 install -U "setuptools>=70.0.0" && \
71+
pip3 install -U "setuptools==81" && \
7272
pip3 install uwsgi && \
7373
cd ${SRC_DIR} && \
7474
pip3 install -e git+${GIT_URL}@${CKAN_REF}#egg=ckan && \

0 commit comments

Comments
 (0)