Skip to content

Commit 9898ea4

Browse files
authored
Drop version upper bound for mypy-extensions (#11735)
This may avoid some package version conflicts in the future. We just need to be careful to avoid making incompatible changes to mypy-extensions, which seems like a good idea in any case.
1 parent 4419154 commit 9898ea4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mypy-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
typing_extensions>=3.10
2-
mypy_extensions>=0.4.3,<0.5.0
2+
mypy_extensions>=0.4.3
33
typed_ast>=1.4.0,<2; python_version<'3.8'
44
tomli>=1.1.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def run(self):
194194
# When changing this, also update mypy-requirements.txt.
195195
install_requires=["typed_ast >= 1.4.0, < 2; python_version<'3.8'",
196196
'typing_extensions>=3.10',
197-
'mypy_extensions >= 0.4.3, < 0.5.0',
197+
'mypy_extensions >= 0.4.3',
198198
'tomli>=1.1.0',
199199
],
200200
# Same here.

0 commit comments

Comments
 (0)