Skip to content

Commit

Permalink
Fix required maximum version of typing-extensions (#833)
Browse files Browse the repository at this point in the history
* Fix required maximum version of typing-extensions

* Restrict to <4.5.0

Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
  • Loading branch information
albertvillanova and adrianeboyd committed Jan 10, 2023
1 parent c2af52d commit 4ad911c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -14,7 +14,7 @@ numpy>=1.15.0
packaging>=20.0
# Backports of modern Python features
dataclasses>=0.6,<1.0; python_version < "3.7"
typing_extensions>=3.7.4.1,<4.2.0; python_version < "3.8"
typing_extensions>=3.7.4.1,<4.5.0; python_version < "3.8"
contextvars>=2.4,<3; python_version < "3.7"
# Development dependencies
cython>=0.25.0,<3.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -54,7 +54,7 @@ install_requires =
packaging>=20.0
# Backports of modern Python features
dataclasses>=0.6,<1.0; python_version < "3.7"
typing_extensions>=3.7.4.1,<4.2.0; python_version < "3.8"
typing_extensions>=3.7.4.1,<4.5.0; python_version < "3.8"
contextvars>=2.4,<3; python_version < "3.7"

[options.entry_points]
Expand Down

0 comments on commit 4ad911c

Please sign in to comment.