Repository: incubator-airflow Updated Branches: refs/heads/master 0523fbf00 -> e38a4e5d3
[AIRFLOW-2713] Rename async variable in setup.py for Python 3.7.0 compatibility Closes #3561 from Perados/rename-async-to- async_packages-in-setup Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/e38a4e5d Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/e38a4e5d Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/e38a4e5d Branch: refs/heads/master Commit: e38a4e5d3064980abd10b8afa6918ab9f10dd8a2 Parents: 0523fbf Author: Diego Mora Cespedes <[email protected]> Authored: Wed Jul 4 23:51:29 2018 +0100 Committer: Kaxil Naik <[email protected]> Committed: Wed Jul 4 23:51:38 2018 +0100 ---------------------------------------------------------------------- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/e38a4e5d/setup.py ---------------------------------------------------------------------- diff --git a/setup.py b/setup.py index 798318c..a2aa440 100644 --- a/setup.py +++ b/setup.py @@ -102,7 +102,8 @@ def write_version(filename=os.path.join(*['airflow', with open(filename, 'w') as a: a.write(text) -async = [ + +async_packages = [ 'greenlet>=0.4.9', 'eventlet>= 0.9.7', 'gevent>=0.13' @@ -294,7 +295,7 @@ def do_setup(): 'devel_ci': devel_ci, 'all_dbs': all_dbs, 'atlas': atlas, - 'async': async, + 'async': async_packages, 'azure_blob_storage': azure_blob_storage, 'azure_data_lake': azure_data_lake, 'cassandra': cassandra,
