From 5e396f44b9c5fd408cb2acae03d9cd39e8d91ed0 Mon Sep 17 00:00:00 2001 From: Stefan Arnold Date: Mon, 26 Feb 2024 15:20:10 +0100 Subject: [PATCH 1/3] update cryptography to >= 41.0.5 --- requirements/base.txt | 5 ++++- requirements/development.txt | 15 ++++++++++++--- requirements/integration.txt | 6 ++++++ setup.py | 2 +- 4 files changed, 23 insertions(+), 5 deletions(-) diff --git a/requirements/base.txt b/requirements/base.txt index 964bea37d697..a3770dc3366e 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -78,7 +78,7 @@ cron-descriptor==1.2.24 # via apache-superset croniter==1.0.15 # via apache-superset -cryptography==42.0.2 +cryptography==42.0.5 # via # apache-superset # paramiko @@ -90,6 +90,8 @@ dnspython==2.1.0 # via email-validator email-validator==1.1.3 # via flask-appbuilder +exceptiongroup==1.2.0 + # via cattrs flask==2.2.5 # via # apache-superset @@ -351,6 +353,7 @@ tabulate==0.8.9 typing-extensions==4.4.0 # via # apache-superset + # cattrs # flask-limiter # limits # shillelagh diff --git a/requirements/development.txt b/requirements/development.txt index ef4ff840650f..463781a1f21c 100644 --- a/requirements/development.txt +++ b/requirements/development.txt @@ -10,8 +10,6 @@ # via # -r requirements/base.in # -r requirements/development.in -appnope==0.1.3 - # via ipython astroid==2.15.8 # via pylint asttokens==2.2.1 @@ -82,6 +80,10 @@ ptyprocess==0.7.0 # via pexpect pure-eval==0.2.2 # via stack-data +pure-sasl==0.6.2 + # via + # pyhive + # thrift-sasl pydruid==0.6.5 # via apache-superset pyhive[hive_pure_sasl]==0.7.0 @@ -105,7 +107,14 @@ tableschema==1.20.2 tabulator==1.53.5 # via tableschema thrift==0.16.0 - # via apache-superset + # via + # apache-superset + # pyhive + # thrift-sasl +thrift-sasl==0.4.3 + # via pyhive +tomli==2.0.1 + # via pylint tomlkit==0.11.8 # via pylint traitlets==5.9.0 diff --git a/requirements/integration.txt b/requirements/integration.txt index f7add32c8511..ce55c02b8b2e 100644 --- a/requirements/integration.txt +++ b/requirements/integration.txt @@ -52,6 +52,12 @@ pyproject-hooks==1.0.0 # via build pyyaml==6.0.1 # via pre-commit +tomli==2.0.1 + # via + # build + # pip-tools + # pyproject-api + # tox toposort==1.10 # via pip-compile-multi tox==4.6.4 diff --git a/setup.py b/setup.py index 0b17320658f7..6c972f784a83 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def get_git_sha() -> str: "croniter>=0.3.28", "cron-descriptor", # 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", + "cryptography>=41.0.5, <43.0.0", "deprecation>=2.1.0, <2.2.0", "flask>=2.2.5, <3.0.0", "flask-appbuilder>=4.4.1, <5.0.0", From 34dbb775876635a65f34fe5a96efcad42a1df1ef Mon Sep 17 00:00:00 2001 From: Stefan Arnold Date: Mon, 26 Feb 2024 15:35:22 +0100 Subject: [PATCH 2/3] version typo in setup.py 42.0.5 --- requirements/testing.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements/testing.txt b/requirements/testing.txt index 7abc48412fc7..55e03e44706d 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -110,6 +110,8 @@ pyee==11.0.1 # via playwright pyfakefs==5.2.2 # via -r requirements/testing.in +pyhive[presto]==0.7.0 + # via apache-superset pytest==7.3.1 # via # -r requirements/testing.in From 44c9eb9716dea74e59972581aa0d1240b11a8b1c Mon Sep 17 00:00:00 2001 From: Stefan Arnold Date: Mon, 26 Feb 2024 15:35:41 +0100 Subject: [PATCH 3/3] typo in setup.py 52.0.5 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6c972f784a83..a02aead7d94f 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def get_git_sha() -> str: "croniter>=0.3.28", "cron-descriptor", # snowflake-connector-python as of 3.7.0 doesn't support >=42.* therefore lowering the min to 41.0.2 - "cryptography>=41.0.5, <43.0.0", + "cryptography>=42.0.5, <43.0.0", "deprecation>=2.1.0, <2.2.0", "flask>=2.2.5, <3.0.0", "flask-appbuilder>=4.4.1, <5.0.0",