This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch pin-greenlet-base in repository https://gitbox.apache.org/repos/asf/superset.git
commit e99ae48ac8aae2bafef3bd85e138edef644734ea Author: Maxime Beauchemin <[email protected]> AuthorDate: Mon Dec 2 09:54:50 2024 -0800 chore: pin greenlet in base dependencies --- pyproject.toml | 8 ++++---- requirements/base.txt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fe79ab55b7..4833e0f269 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,6 +55,10 @@ dependencies = [ "flask-wtf>=1.1.0, <2.0", "func_timeout", "geopy", + # playwright requires greenlet==3.0.3 + # submitted a PR to relax deps in 11/2024 + # https://github.com/microsoft/playwright-python/pull/2669 + "greenlet==3.0.3", "gunicorn>=22.0.0; sys_platform != 'win32'", "hashids>=1.3.1, <2", # known issue with holidays 0.26.0 and above related to prophet lib #25017 @@ -182,10 +186,6 @@ development = [ "docker", "flask-testing", "freezegun", - # playwright requires greenlet==3.0.3 - # submitted a PR to relax deps in 11/2024 - # https://github.com/microsoft/playwright-python/pull/2669 - "greenlet==3.0.3", "grpcio>=1.55.3", "openapi-spec-validator", "parameterized", diff --git a/requirements/base.txt b/requirements/base.txt index 7d41af2795..f68f16701e 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -155,8 +155,8 @@ google-auth==2.36.0 # via shillelagh greenlet==3.0.3 # via + # apache-superset # shillelagh - # sqlalchemy gunicorn==23.0.0 # via apache-superset hashids==1.3.1
