Skip to content

Commit 51b1aee

Browse files
authored
Relax version requiremets (#24)
* [AIRFLOW-2731] Raise psutil restriction to <6.0.0 * [TWTR][AIRFLOW-5925] Relax funcsigs requirement, open source PR hasnt landed yet
1 parent 7e8272c commit 51b1aee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

airflow/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# under the License.
1919
#
2020

21-
version = '1.10.0+twtr22'
21+
version = '1.10.0+twtr23'

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def do_setup():
280280
'flask-login>=0.3, <0.5',
281281
'flask-swagger==0.2.13',
282282
'flask-wtf>=0.14.2, <0.15',
283-
'funcsigs==1.0.0',
283+
'funcsigs>=1.0.0, <2.0.0',
284284
'future>=0.16.0, <0.17',
285285
'gitpython>=2.0.2',
286286
'gunicorn>=19.4.0, <20.0',
@@ -290,7 +290,7 @@ def do_setup():
290290
'markdown>=2.5.2, <3.0',
291291
'pandas>=0.17.1, <1.0.0',
292292
'pendulum==1.4.4',
293-
'psutil>=4.2.0, <5.0.0',
293+
'psutil>=4.2.0, <6.0.0',
294294
'pygments>=2.0.1, <3.0',
295295
'python-daemon>=2.1.1, <2.2',
296296
'python-dateutil>=2.3, <3',

0 commit comments

Comments
 (0)