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 (apache#5045)
  • Loading branch information
PaulW authored and wayne.morris committed Jul 29, 2019
1 parent 7c7a699 commit a0a9458
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 @@ -189,9 +189,12 @@ def write_version(filename=os.path.join(*['airflow',
'PyOpenSSL',
'pandas-gbq'
]
github_enterprise = ['Flask-OAuthlib>=0.9.1']
grpc = ['grpcio>=1.15.0']
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 @@ -357,8 +360,8 @@ def do_setup():
'elasticsearch': elasticsearch,
'gcp': gcp,
'gcp_api': gcp, # TODO: remove this in Airflow 2.1
'github_enterprise': github_enterprise,
'google_auth': google_auth,
'github_enterprise': flask_oauth,
'google_auth': flask_oauth,
'grpc': grpc,
'hdfs': hdfs,
'hive': hive,
Expand Down

0 comments on commit a0a9458

Please sign in to comment.