Skip to content

Commit 465647d

Browse files
Anaconda: Update "future" due to CVE-2022-40899 (devcontainers#457)
1 parent 5127a04 commit 465647d

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/anaconda/.devcontainer/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ RUN python3 -m pip install \
6666
numpy \
6767
# https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23491
6868
certifi \
69+
# https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40899
70+
future \
6971
# https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40898
7072
wheel
7173

src/anaconda/manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"mistune",
3131
"numpy",
3232
"certifi",
33+
"future",
3334
"wheel"
3435
],
3536
"other": {

src/anaconda/test-project/test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ check-version-ge "mistune-requirement" "${mistune_version}" "2.0.3"
4444
numpy_version=$(python -c "import numpy; print(numpy.__version__)")
4545
check-version-ge "numpy-requirement" "${numpy_version}" "1.22"
4646

47+
future_version=$(python -c "import future; print(future.__version__)")
48+
check-version-ge "future-requirement" "${future_version}" "0.18.3"
49+
4750
wheel_version=$(python -c "import wheel; print(wheel.__version__)")
4851
check-version-ge "wheel-requirement" "${wheel_version}" "0.38.1"
4952

0 commit comments

Comments
 (0)