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

[airflow] 03/05: Bump minimum required ``alembic`` version (#20153)

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

jedcunningham pushed a commit to branch v2-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 3a39702e6fc98a3b43b6d9506c8e1c4a3f0913d1
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Thu Dec 9 01:01:56 2021 +0000

    Bump minimum required ``alembic`` version (#20153)
    
    Related to https://github.com/apache/airflow/pull/18453#issuecomment-989314399
    
    `1.5.0` was yanked so `>=1.5.1` is safe and we already have `1.7.5` in constraints-main
    
    (cherry picked from commit f99d0e7066d2c00ff6581fd566a4d0a9826a2fc3)
---
 setup.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.cfg b/setup.cfg
index fcd09b2..a75191a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -80,7 +80,7 @@ setup_requires =
 # DEPENDENCIES_EPOCH_NUMBER in the Dockerfile.ci
 #####################################################################################################
 install_requires =
-    alembic>=1.2, <2.0
+    alembic>=1.5.1, <2.0
     argcomplete~=1.10
     attrs>=20.0, <21.0
     blinker