This is an automated email from the ASF dual-hosted git repository.
potiuk 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 19eb7ef Cattrs 1.7.0 released by the end of May 2021 break lineage
usage (#16173)
19eb7ef is described below
commit 19eb7ef95741e10d712845bc737b86615cbb8e7a
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun May 30 23:53:28 2021 +0200
Cattrs 1.7.0 released by the end of May 2021 break lineage usage (#16173)
See https://github.com/apache/airflow/issues/16172
For now we limit the cattrs to < 1.7.0
---
setup.cfg | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/setup.cfg b/setup.cfg
index fc438d4..46bf15b 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -83,7 +83,8 @@ install_requires =
cached_property~=1.5;python_version<="3.7"
# cattrs >= 1.1.0 dropped support for Python 3.6
cattrs>=1.0, <1.1.0;python_version<="3.6"
- cattrs~=1.1;python_version>"3.6"
+ # cattrs >= 1.7.0 break lineage - see
https://github.com/apache/airflow/issues/16172
+ cattrs~=1.1, <1.7.0;python_version>"3.6"
# Required by vendored-in connexion
clickclick>=1.2
colorlog>=4.0.2