Skip to content

Commit

Permalink
Pin tomli to 1.1.0
Browse files Browse the repository at this point in the history
While we figure out what the plan is in coordination with black and
pip (see #10893), just pin to the previous version of tomli that isn't
causing our CI to fail.
  • Loading branch information
msullivan committed Aug 6, 2021
1 parent 68a67ae commit b223499
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
@@ -1,4 +1,4 @@
typing_extensions>=3.7.4
mypy_extensions>=0.4.3,<0.5.0
typed_ast>=1.4.0,<1.5.0
tomli<2.0.0
tomli>=1.1.0,<1.2.0
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -193,7 +193,7 @@ def run(self):
install_requires=["typed_ast >= 1.4.0, < 1.5.0; python_version<'3.8'",
'typing_extensions>=3.7.4',
'mypy_extensions >= 0.4.3, < 0.5.0',
'tomli<2.0.0',
'tomli>=1.1.0,<1.2.0',
],
# Same here.
extras_require={'dmypy': 'psutil >= 4.0', 'python2': 'typed_ast >= 1.4.0, < 1.5.0'},
Expand Down

0 comments on commit b223499

Please sign in to comment.