File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,9 @@ RUN python3 -m pip install \
6262 # https://github.com/advisories/GHSA-39hc-v87j-747x
6363 cryptography \
6464 # https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34749
65- mistune
65+ mistune \
66+ # https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34141
67+ numpy
6668
6769# Copy environment.yml (if found) to a temp locaition so we update the environment. Also
6870# copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists.
Original file line number Diff line number Diff line change 2727 " joblib" ,
2828 " cookiecutter" ,
2929 " cryptography" ,
30- " mistune"
30+ " mistune" ,
31+ " numpy"
3132 ],
3233 "other" : {
3334 "conda" : {
Original file line number Diff line number Diff line change @@ -32,5 +32,8 @@ check-version-ge "cryptography-requirement" "${cryptography_version}" "38.0.3"
3232mistune_version=$( python -c " import mistune; print(mistune.__version__)" )
3333check-version-ge " mistune-requirement" " ${mistune_version} " " 2.0.3"
3434
35+ numpy_version=$( python -c " import numpy; print(numpy.__version__)" )
36+ check-version-ge " numpy-requirement" " ${numpy_version} " " 1.22"
37+
3538# Report result
3639reportResults
You can’t perform that action at this time.
0 commit comments