Skip to content

Commit 59e07ba

Browse files
committed
fix: update setuptools in layers
1 parent fa21733 commit 59e07ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

building/lambda/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN ln -s /usr/bin/gcc10-ld /usr/bin/ld
3434
FROM ${python_version}
3535
COPY pyproject.toml poetry.lock ./
3636

37-
RUN pip3 install --upgrade pip wheel setuptools>=64 setuptools_scm>=8
37+
RUN pip3 install --upgrade pip wheel setuptools>=78.1.1 setuptools_scm>=8
3838
RUN pip3 install --upgrade urllib3==1.26.16 # temporary to avoid https://github.com/urllib3/urllib3/issues/2168 (TODO remove when the AL2 image updates to support OpenSSL 1.1.1+)
3939
RUN pip3 install --upgrade six cython cmake hypothesis poetry
4040
ENV PIP_NO_BINARY="numpy,pandas"

building/lambda/Dockerfile.al2023

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ WORKDIR /root
2323
FROM ${python_version}
2424
COPY pyproject.toml poetry.lock ./
2525

26-
RUN pip3 install --upgrade pip wheel setuptools>=64 setuptools_scm>=8
26+
RUN pip3 install --upgrade pip wheel setuptools>=78.1.1 setuptools_scm>=8
2727
RUN pip3 install --upgrade six cython cmake hypothesis poetry
2828
ENV PIP_NO_BINARY="numpy,pandas"
2929
RUN poetry config virtualenvs.create false --local && poetry install --no-root --only main

0 commit comments

Comments
 (0)