File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,9 @@ RUN python3 -m pip install \
7171 # https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40899
7272 future \
7373 # https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40898
74- wheel
74+ wheel \
75+ # https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-32862
76+ nbconvert
7577
7678# Copy environment.yml (if found) to a temp location so we can update the environment. Also
7779# 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 3232 " certifi" ,
3333 " setuptools" ,
3434 " future" ,
35- " wheel"
35+ " wheel" ,
36+ " nbconvert" ,
37+ " py"
3638 ],
3739 "other" : {
3840 "git" : {},
Original file line number Diff line number Diff line change @@ -53,5 +53,8 @@ check-version-ge "future-requirement" "${future_version}" "0.18.3"
5353wheel_version=$( python -c " import wheel; print(wheel.__version__)" )
5454check-version-ge " wheel-requirement" " ${wheel_version} " " 0.38.1"
5555
56+ nbconvert_version=$( python -c " import nbconvert; print(nbconvert.__version__)" )
57+ check-version-ge " nbconvert-requirement" " ${nbconvert_version} " " 6.5.1"
58+
5659# Report result
5760reportResults
You can’t perform that action at this time.
0 commit comments