File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11# NOTE: this needs to be kept in sync with the "requires" list in pyproject.toml
22# and the pins in setup.py
33typing_extensions>=4.6.0
4- mypy_extensions>=1.0.0
4+ mypy_extensions>=1.0.0,<2
55tomli>=1.1.0; python_version<'3.11'
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ requires = [
44 # and build-requirements.txt, because those are both needed for
55 # self-typechecking :/
66 " setuptools >= 75.1.0" ,
7- # the following is from mypy-requirements.txt/setup.py
7+ # the following is from mypy-requirements.txt
88 " typing_extensions>=4.6.0" ,
9- " mypy_extensions>=1.0.0" ,
9+ " mypy_extensions>=1.0.0,<2 " ,
1010 " tomli>=1.1.0; python_version<'3.11'" ,
1111 # the following is from build-requirements.txt
1212 " types-psutil" ,
@@ -48,7 +48,7 @@ requires-python = ">=3.9"
4848dependencies = [
4949 # When changing this, also update build-system.requires and mypy-requirements.txt
5050 " typing_extensions>=4.6.0" ,
51- " mypy_extensions>=1.0.0" ,
51+ " mypy_extensions>=1.0.0,<2 " ,
5252 " tomli>=1.1.0; python_version<'3.11'" ,
5353]
5454dynamic = [" version" ]
You can’t perform that action at this time.
0 commit comments