Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Reverted cryptography change for library path issue
  • Loading branch information
prathameshzarkar9 authored May 22, 2024
commit 07dd8c3049fd918100ebad3b44fd4a89f17db783
6 changes: 5 additions & 1 deletion src/miniconda/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ RUN conda install \
# https://github.com/advisories/GHSA-jjg7-2v4v-x38h
idna==3.7

RUN conda install \
# https://github.com/advisories/GHSA-3ww4-gg4f-jr7f
cryptography==42.0.5

RUN python3 -m pip install --upgrade \
# https://github.com/advisories/GHSA-6vqw-3v5j-54x4
cryptography==42.0.4 \
# cryptography==42.0.4 \
# installed for compatibility with cryptography v42.0.4
pyopenssl==24.0.0

Expand Down
4 changes: 2 additions & 2 deletions src/miniconda/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ check "gitconfig-contains-name" sh -c "cat /etc/gitconfig | grep 'name = devcont

check "usr-local-etc-config-does-not-exist" test ! -f "/usr/local/etc/gitconfig"

checkPythonPackageVersion "cryptography" "42.0.4"
checkPythonPackageVersion "cryptography" "42.0.5"
checkPythonPackageVersion "setuptools" "65.5.1"
checkPythonPackageVersion "wheel" "0.38.1"

checkCondaPackageVersion "cryptography" "42.0.4"
checkCondaPackageVersion "cryptography" "42.0.5"
checkCondaPackageVersion "pyopenssl" "24.0.0"
checkCondaPackageVersion "setuptools" "65.5.1"
checkCondaPackageVersion "wheel" "0.38.1"
Expand Down