Skip to content

Commit

Permalink
Fix required maximum version of typing-extensions (#20)
Browse files Browse the repository at this point in the history
* Fix required minimum 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 768d214 commit 6b51373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pydantic>=1.7.4,!=1.8,!=1.8.1,<1.11.0
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"
srsly>=2.4.0,<3.0.0
# Development requirements
pathy>=0.3.5
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ include_package_data = true
python_requires = >=3.6
install_requires =
pydantic>=1.7.4,!=1.8,!=1.8.1,<1.11.0
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"
srsly>=2.4.0,<3.0.0

[sdist]
Expand Down

0 comments on commit 6b51373

Please sign in to comment.