From 42e6aeecb0861c4835bdb539a9eff96bca7a05d4 Mon Sep 17 00:00:00 2001
From: Andi <andi.gerken@gmail.com>
Date: Thu, 5 May 2022 16:28:13 +0200
Subject: [PATCH] removed version from cryptography

---
 centos/Dockerfile             | 2 +-
 windows/cuda-devel/Dockerfile | 2 +-
 windows/devel/Dockerfile      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/centos/Dockerfile b/centos/Dockerfile
index 2764a46..c6af163 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 e03be2e..4e98745 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 0d1f9e6..7da1cd6 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 \
-- 
GitLab