Skip to content

Commit

Permalink
Bump attrs and cattrs dependencies
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#11965
  • Loading branch information
kaxil committed Oct 30, 2020
1 parent 1faf985 commit 038b474
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 @@ -690,9 +690,11 @@ def is_package_excluded(package: str, exclusion_list: List[str]):
INSTALL_REQUIREMENTS = [
'alembic>=1.2, <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',
'connexion[swagger-ui,flask]>=2.6.0,<3',
'croniter>=0.3.17, <0.4',
Expand Down

0 comments on commit 038b474

Please sign in to comment.