Skip to content

Commit 46b9295

Browse files
[python] - setuptools - GHSA-cx63-2mw6-8hw5 - v69.0.3 to v70.0.0 (#1219)
* [python] - setuptools - GHSA-cx63-2mw6-8hw5 - v69.0.3 to v70.0.0 * Updating the python setuptools version to the latest one 75.6.0 as needed for PR #1219 --------- Co-authored-by: Kaniska244 <[email protected]>
1 parent 326d2f2 commit 46b9295

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/python/.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
99
# Temporary: Upgrade python packages due to https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40897 and https://github.com/advisories/GHSA-2mqj-m65w-jghx
1010
# They are installed by the base image (python) which does not have the patch.
1111
RUN python3 -m pip install --upgrade \
12-
setuptools==69.0.3 \
12+
setuptools==75.6.0 \
1313
gitpython==3.1.41
1414

1515
# [Optional] If your pip requirements rarely change, uncomment this section to add them to the image.

src/python/test-project/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ check "gitconfig-contains-name" sh -c "cat /etc/gitconfig | grep 'name = devcont
4040
check "usr-local-etc-config-does-not-exist" test ! -f "/usr/local/etc/gitconfig"
4141

4242
setuptools_version=$(python -c "import setuptools; print(setuptools.__version__)")
43-
check-version-ge "setuptools-requirement" "${setuptools_version}" "65.5.1"
43+
check-version-ge "setuptools-requirement" "${setuptools_version}" "75.6.0"
4444

4545
# https://github.com/advisories/GHSA-2mqj-m65w-jghx
4646
gitpython_version=$(python -c "import git; print(git.__version__)")

0 commit comments

Comments
 (0)