Skip to content

Commit

Permalink
Typing extensions min version (#4886)
Browse files Browse the repository at this point in the history
* change dependency to "typing-extensions>=4.2.0"

* add change description
  • Loading branch information
samuelcolvin committed Dec 30, 2022
1 parent 0a9e000 commit 2106f1c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions changes/4885-samuelcolvin.md
@@ -0,0 +1 @@
Change dependency to `typing-extensions>=4.2.0`
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -130,7 +130,7 @@ def extra(self):
python_requires='>=3.7',
zip_safe=False, # https://mypy.readthedocs.io/en/latest/installed_packages.html
install_requires=[
'typing-extensions>=4.1.0'
'typing-extensions>=4.2.0'
],
extras_require={
'email': ['email-validator>=1.0.3'],
Expand Down
2 changes: 2 additions & 0 deletions tests/requirements-testing.txt
Expand Up @@ -7,3 +7,5 @@ pytest==7.1.2
pytest-cov==3.0.0
pytest-mock==3.8.2
pytest-sugar==0.9.5
# pin typing-extensions to minimum requirement - see #4885
typing-extensions==4.2.0

0 comments on commit 2106f1c

Please sign in to comment.