From 1ef978e41e4ef0314f88e0834c2cc6eae422c738 Mon Sep 17 00:00:00 2001 From: Dan Davydov Date: Tue, 12 Nov 2019 15:48:38 -0500 Subject: [PATCH 1/3] [AIRFLOW-5657] Update the upper bound for dill (#6334) --- airflow/version.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airflow/version.py b/airflow/version.py index 7d5283af274efc..df2f37524a2245 100644 --- a/airflow/version.py +++ b/airflow/version.py @@ -18,4 +18,4 @@ # under the License. # -version = '1.10.0+twtr21' +version = '1.10.0+twtr22' diff --git a/setup.py b/setup.py index c428d29bf1d9de..21c3658fe8c0bf 100644 --- a/setup.py +++ b/setup.py @@ -272,7 +272,7 @@ def do_setup(): 'bleach==2.1.2', 'configparser>=3.5.0, <3.6.0', 'croniter>=0.3.17, <0.4', - 'dill>=0.2.2, <0.3', + 'dill>=0.2.2, <0.4', 'flask>=0.12.4, <0.13', 'flask-appbuilder>=1.11.1, <2.0.0', 'flask-admin==1.4.1', From 44e8f0e3a1ef5d4fe5ffe99a60676e2cdfd2784b Mon Sep 17 00:00:00 2001 From: George Leslie-Waksman Date: Sat, 21 Jul 2018 13:42:29 +0100 Subject: [PATCH 2/3] [AIRFLOW-2731] Raise psutil restriction to <6.0.0 Closes #3585 from gwax/upgrade_psutil --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 21c3658fe8c0bf..914276f681cdd8 100644 --- a/setup.py +++ b/setup.py @@ -290,7 +290,7 @@ def do_setup(): 'markdown>=2.5.2, <3.0', 'pandas>=0.17.1, <1.0.0', 'pendulum==1.4.4', - 'psutil>=4.2.0, <5.0.0', + 'psutil>=4.2.0, <6.0.0', 'pygments>=2.0.1, <3.0', 'python-daemon>=2.1.1, <2.2', 'python-dateutil>=2.3, <3', From 294fa0ad0290d3458ee8eff8e8183e531b044d39 Mon Sep 17 00:00:00 2001 From: Dan Davydov Date: Wed, 13 Nov 2019 15:36:59 -0500 Subject: [PATCH 3/3] [TWTR][AIRFLOW-5925] Relax funcsigs requirement, open source PR hasnt landed yet --- airflow/version.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airflow/version.py b/airflow/version.py index df2f37524a2245..6acabbbf24a196 100644 --- a/airflow/version.py +++ b/airflow/version.py @@ -18,4 +18,4 @@ # under the License. # -version = '1.10.0+twtr22' +version = '1.10.0+twtr23' diff --git a/setup.py b/setup.py index 914276f681cdd8..991e32fdd0c6c5 100644 --- a/setup.py +++ b/setup.py @@ -280,7 +280,7 @@ def do_setup(): 'flask-login>=0.3, <0.5', 'flask-swagger==0.2.13', 'flask-wtf>=0.14.2, <0.15', - 'funcsigs==1.0.0', + 'funcsigs>=1.0.0, <2.0.0', 'future>=0.16.0, <0.17', 'gitpython>=2.0.2', 'gunicorn>=19.4.0, <20.0',