Skip to content

Commit

Permalink
[AIRFLOW-4246] Flask-Oauthlib needs downstream dependencies pinning d…
Browse files Browse the repository at this point in the history
…ue to breaking changes (#5045)
  • Loading branch information
PaulW authored and ashb committed Apr 5, 2019
1 parent a76f146 commit b24489f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,11 @@ def write_version(filename=os.path.join(*['airflow',
'PyOpenSSL',
'pandas-gbq'
]
github_enterprise = ['Flask-OAuthlib>=0.9.1']
google_auth = ['Flask-OAuthlib>=0.9.1']
flask_oauth = [
'Flask-OAuthlib>=0.9.1',
'oauthlib!=2.0.3,!=2.0.4,!=2.0.5,<3.0.0,>=1.1.2',
'requests-oauthlib==1.1.0'
]
hdfs = ['snakebite>=2.7.8']
hive = [
'hmsclient>=0.1.0',
Expand Down Expand Up @@ -355,8 +358,8 @@ def do_setup():
'elasticsearch': elasticsearch,
'emr': emr,
'gcp_api': gcp_api,
'github_enterprise': github_enterprise,
'google_auth': google_auth,
'github_enterprise': flask_oauth,
'google_auth': flask_oauth,
'hdfs': hdfs,
'hive': hive,
'jdbc': jdbc,
Expand Down

0 comments on commit b24489f

Please sign in to comment.