You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by mi...@apache.org on 2024/02/22 17:41:46 UTC

(superset) 07/14: chore: lower cryptography min version to 41.0.2 (#27129)

This is an automated email from the ASF dual-hosted git repository.

michaelsmolina pushed a commit to branch 3.1
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 0308095a223ec046b142e43fb366062f422d770a
Author: Joe Li <jo...@preset.io>
AuthorDate: Thu Feb 15 10:27:30 2024 -0800

    chore: lower cryptography min version to 41.0.2 (#27129)
    
    (cherry picked from commit d2910b0b87232b88be1f8199a3501df99e108468)
---
 setup.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 5488a3d761..998b134dc7 100644
--- a/setup.py
+++ b/setup.py
@@ -80,7 +80,8 @@ setup(
         "colorama",
         "croniter>=0.3.28",
         "cron-descriptor",
-        "cryptography>=42.0.0, <43.0.0",
+        # snowflake-connector-python as of 3.7.0 doesn't support >=42.* therefore lowering the min to 41.0.2
+        "cryptography>=41.0.2, <43.0.0",
         "deprecation>=2.1.0, <2.2.0",
         "flask>=2.2.5, <3.0.0",
         "flask-appbuilder>=4.3.11, <5.0.0",