Skip to content

Commit daed963

Browse files
authored
Pin tomli to 1.1.0 (#10938)
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.
1 parent 68a67ae commit daed963

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mypy-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
typing_extensions>=3.7.4
22
mypy_extensions>=0.4.3,<0.5.0
33
typed_ast>=1.4.0,<1.5.0
4-
tomli<2.0.0
4+
tomli>=1.1.0,<1.2.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def run(self):
193193
install_requires=["typed_ast >= 1.4.0, < 1.5.0; python_version<'3.8'",
194194
'typing_extensions>=3.7.4',
195195
'mypy_extensions >= 0.4.3, < 0.5.0',
196-
'tomli<2.0.0',
196+
'tomli>=1.1.0,<1.2.0',
197197
],
198198
# Same here.
199199
extras_require={'dmypy': 'psutil >= 4.0', 'python2': 'typed_ast >= 1.4.0, < 1.5.0'},

0 commit comments

Comments
 (0)