Skip to content

Commit

Permalink
Bump attrs and cattrs dependencies (#11969)
Browse files Browse the repository at this point in the history
`cattrs` now depends on `attrs >= 20.1.0`, because of `attr.resolve_types`.

Source: https://github.com/Tinche/cattrs/blob/master/HISTORY.rst#110-2020-10-29

closes apache/airflow#11965

(cherry picked from commit 3ad037872e54ec617f1b2734781c61640c7528ca)

GitOrigin-RevId: 6b41e9541d445261bd8073750e047cbfaf03a624
  • Loading branch information
kaxil authored and Cloud Composer Team committed Jun 9, 2021
1 parent ddc8f47 commit 136da8a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,9 +575,11 @@ def write_version(filename=os.path.join(*[my_dir, "airflow", "git_version"])):
INSTALL_REQUIREMENTS = [
'alembic>=1.0, <2.0',
'argcomplete~=1.10',
'attrs~=20.0',
'attrs>=20.0, <21.0',
'cached_property~=1.5',
'cattrs~=1.0',
# 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"',
'colorlog==4.0.2',
'configparser>=3.5.0, <3.6.0',
'croniter>=0.3.17, <0.4',
Expand Down

0 comments on commit 136da8a

Please sign in to comment.