Skip to content

Commit 9faffe8

Browse files
cdce8pAlexWaygood
authored andcommittedJun 24, 2023
Bump typing_extensions dependency (#15488)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
1 parent 7871ed9 commit 9faffe8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎mypy-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# NOTE: this needs to be kept in sync with the "requires" list in pyproject.toml
2-
typing_extensions>=3.10
2+
typing_extensions>=4.1.0
33
mypy_extensions>=1.0.0
44
typed_ast>=1.4.0,<2; python_version<'3.8'
55
tomli>=1.1.0; python_version<'3.11'

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = [
66
"setuptools >= 40.6.2",
77
"wheel >= 0.30.0",
88
# the following is from mypy-requirements.txt
9-
"typing_extensions>=3.10",
9+
"typing_extensions>=4.1.0",
1010
"mypy_extensions>=1.0.0",
1111
"typed_ast>=1.4.0,<2; python_version<'3.8'",
1212
"tomli>=1.1.0; python_version<'3.11'",

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def run(self):
222222
# When changing this, also update mypy-requirements.txt.
223223
install_requires=[
224224
"typed_ast >= 1.4.0, < 2; python_version<'3.8'",
225-
"typing_extensions>=3.10",
225+
"typing_extensions>=4.1.0",
226226
"mypy_extensions >= 1.0.0",
227227
"tomli>=1.1.0; python_version<'3.11'",
228228
],

0 commit comments

Comments
 (0)
Please sign in to comment.