You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/12/18 20:38:50 UTC

[airflow] branch v1-10-stable updated: Do not allow yanked version of Airflow in upgrade-check tool (#13160)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v1-10-stable
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-stable by this push:
     new 3869ed2  Do not allow yanked version of Airflow in upgrade-check tool (#13160)
3869ed2 is described below

commit 3869ed2e5b0d79970c4eb726a358c420fde44bdd
Author: Xiaodong DENG <xd...@gmail.com>
AuthorDate: Fri Dec 18 21:37:47 2020 +0100

    Do not allow yanked version of Airflow in upgrade-check tool (#13160)
---
 airflow/upgrade/setup.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/upgrade/setup.cfg b/airflow/upgrade/setup.cfg
index bd3865f..8cdf9dd 100644
--- a/airflow/upgrade/setup.cfg
+++ b/airflow/upgrade/setup.cfg
@@ -46,7 +46,7 @@ project_urls =
 [options]
 packages = find:
 install_requires =
-    apache-airflow>=1.10.13,<3
+    apache-airflow>=1.10.14,<3
     importlib-metadata~=2.0; python_version<"3.8"
     packaging
 python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*