Skip to content

Commit

Permalink
Drop version upper bound for mypy-extensions (#11735)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
JukkaL authored Dec 14, 2021
1 parent 4419154 commit 9898ea4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mypy-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
typing_extensions>=3.10
mypy_extensions>=0.4.3,<0.5.0
mypy_extensions>=0.4.3
typed_ast>=1.4.0,<2; python_version<'3.8'
tomli>=1.1.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def run(self):
# When changing this, also update mypy-requirements.txt.
install_requires=["typed_ast >= 1.4.0, < 2; python_version<'3.8'",
'typing_extensions>=3.10',
'mypy_extensions >= 0.4.3, < 0.5.0',
'mypy_extensions >= 0.4.3',
'tomli>=1.1.0',
],
# Same here.
Expand Down

0 comments on commit 9898ea4

Please sign in to comment.