From 4625908ea51d1c8cd0c35b6b35e66d771b838b39 Mon Sep 17 00:00:00 2001 From: Joe Li Date: Thu, 15 Feb 2024 10:27:30 -0800 Subject: [PATCH] chore: lower cryptography min version to 41.0.2 (#27129) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a5a957ca97468..2bf4c77b0d177 100644 --- a/setup.py +++ b/setup.py @@ -80,7 +80,8 @@ def get_git_sha() -> str: "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",