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

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

commit ee863faace70c545e7c0e7a59312a428f24bed9b
Author: Kaxil Naik <[email protected]>
AuthorDate: Fri Jan 14 23:31:37 2022 +0530

    Unpin ``argcomplete`` and ``colorlog`` (#20878)
    
    For Both of these libraries, the only breaking changes are dropping support 
for old Python version.
    
    - https://github.com/kislyuk/argcomplete/blob/develop/Changes.rst
    - https://github.com/borntyping/python-colorlog/releases
    
    (cherry picked from commit 915773430427e219c1404270d828e709234ed294)
---
 setup.cfg | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.cfg b/setup.cfg
index 328ba95..0f80dd3 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -82,7 +82,7 @@ setup_requires =
 
#####################################################################################################
 install_requires =
     alembic>=1.5.1, <2.0
-    argcomplete~=1.10
+    argcomplete>=1.10, <3.0
     attrs>=20.0, <21.0
     blinker
     cached_property~=1.5;python_version<="3.7"
@@ -91,7 +91,7 @@ install_requires =
     cattrs~=1.1, !=1.7.*;python_version>"3.6"
     # Required by vendored-in connexion
     clickclick>=1.2
-    colorlog>=4.0.2, <6.0
+    colorlog>=4.0.2, <7.0
     croniter>=0.3.17
     cryptography>=0.9.3
     dataclasses;python_version<"3.7"

Reply via email to