You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/11/02 16:27:31 UTC

[airflow] branch master updated: Install cattr on Python 3.7 - Fix docs build on RTD (#12045)

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

kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new fabcb2d  Install cattr on Python 3.7 - Fix docs build on RTD (#12045)
fabcb2d is described below

commit fabcb2ddc8267cc5a103c6d52f80b906ad23608e
Author: Kamil BreguĊ‚a <mi...@users.noreply.github.com>
AuthorDate: Mon Nov 2 17:25:52 2020 +0100

    Install cattr on Python 3.7 - Fix docs build on RTD (#12045)
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 43a71b1..0f10995 100644
--- a/setup.py
+++ b/setup.py
@@ -696,7 +696,7 @@ INSTALL_REQUIREMENTS = [
     'cached_property~=1.5',
     # cattrs >= 1.1.0 dropped support for Python 3.6
     'cattrs>=1.0, <1.1.0;python_version<="3.6"',
-    'cattrs>=1.0, <2.0;python_version>"3.7"',
+    'cattrs>=1.0, <2.0;python_version>"3.6"',
     'colorlog==4.0.2',
     'connexion[swagger-ui,flask]>=2.6.0,<3',
     'croniter>=0.3.17, <0.4',