diff --git a/centos/Dockerfile b/centos/Dockerfile index 2764a4648f0c24799fdc19d75d368453571c15c8..c6af163f3803253be752f83687637e3212d0cc7d 100644 --- a/centos/Dockerfile +++ b/centos/Dockerfile @@ -560,7 +560,7 @@ RUN python3.9 -m pip --no-cache-dir install -U pip && \ # Python 3.10 packages RUN python3.10 -m pip --no-cache-dir install -U pip && \ - python3.10 -m pip --no-cache-dir install 'cryptography<3.4' && \ + python3.10 -m pip --no-cache-dir install 'cryptography' && \ python3.10 -m pip --no-cache-dir install \ wheel \ twine \ diff --git a/windows/cuda-devel/Dockerfile b/windows/cuda-devel/Dockerfile index e03be2eec5f03a1a689315007b201bfad2c1ac5b..4e987450d404cb0c1767cc534aa39afae0145d6b 100644 --- a/windows/cuda-devel/Dockerfile +++ b/windows/cuda-devel/Dockerfile @@ -62,7 +62,7 @@ RUN Must-Run choco install -y --allow-multiple-versions python --version 3.10.4; Must-Run choco install -y --allow-multiple-versions python --version 3.7.9; \ $env:PATH = "\"$([Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::User));$([Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine))\""; \ Must-Run /Python310/python -m pip --no-cache-dir install --no-warn-script-location -U pip; \ - Must-Run /Python310/python -m pip --no-cache-dir install --no-warn-script-location 'cryptography<3.4'; \ + Must-Run /Python310/python -m pip --no-cache-dir install --no-warn-script-location 'cryptography'; \ Must-Run /Python310/python -m pip --no-cache-dir install --no-warn-script-location \ wheel \ twine \ diff --git a/windows/devel/Dockerfile b/windows/devel/Dockerfile index 0d1f9e62cb0be30f9aac5d5b2f6c9226439e65ef..7da1cd63b45da7b79617df47a0302a26cb9338b5 100644 --- a/windows/devel/Dockerfile +++ b/windows/devel/Dockerfile @@ -51,7 +51,7 @@ RUN Must-Run choco install -y --allow-multiple-versions python --version 3.10.4; Must-Run choco install -y --allow-multiple-versions python --version 3.7.9; \ $env:PATH = "\"$([Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::User));$([Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine))\""; \ Must-Run /Python310/python -m pip --no-cache-dir install --no-warn-script-location -U pip; \ - Must-Run /Python310/python -m pip --no-cache-dir install --no-warn-script-location 'cryptography<3.4'; \ + Must-Run /Python310/python -m pip --no-cache-dir install --no-warn-script-location 'cryptography'; \ Must-Run /Python310/python -m pip --no-cache-dir install --no-warn-script-location \ wheel \ twine \