Skip to content

Commit

Permalink
Restrict python version for typing dependency
Browse files Browse the repository at this point in the history
Importing typing causes errors after python 3.6.
See python/typing#573

Signed-off-by: Conley Owens <cco3@google.com>
  • Loading branch information
cco3 committed Nov 18, 2020
1 parent d89c6b6 commit 88c1724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ install_requires =
requests >= 2.7.0, < 3.0.0
intbitset >= 2.3.0, < 3.0
saneyaml
typing >=3.6, < 3.7
typing >=3.6, < 3.7; python_version < "3.7"
setup_requires = setuptools_scm[toml] >= 4

[options.packages.find]
Expand Down

0 comments on commit 88c1724

Please sign in to comment.