Skip to content

Commit 394d07c

Browse files
updating setuptools from 75.6.0 to 78.1.1 (#1455)
* updating setuptools from 75.6.0 to 80.9.0 * changes in the version * bump up the patch version of the image * Update manifest.json --------- Co-authored-by: Álvaro Rausell Guiard <33221237+AlvaroRausell@users.noreply.github.com>
1 parent ae2bdcb commit 394d07c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/python/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
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==75.6.0 \
12+
setuptools==78.1.1 \
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/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.2.8",
2+
"version": "1.3.0",
33
"variants": [
44
"3.13-bookworm",
55
"3.12-bookworm",

src/python/test-project/test.sh

Lines changed: 1 addition & 1 deletion
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}" "75.6.0"
43+
check-version-ge "setuptools-requirement" "${setuptools_version}" "78.1.1"
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)