File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -38,17 +38,17 @@ Installation
38
38
------------
39
39
40
40
Mypyc is shipped as part of the mypy distribution. Install mypy like
41
- this (you need Python 3.5 or later):
41
+ this (you need Python 3.8 or later):
42
42
43
43
.. code-block ::
44
44
45
- $ python3 -m pip install -U mypy
45
+ $ python3 -m pip install -U ' mypy[mypyc]'
46
46
47
47
On some systems you need to use this instead:
48
48
49
49
.. code-block ::
50
50
51
- $ python -m pip install -U mypy
51
+ $ python -m pip install -U ' mypy[mypyc]'
52
52
53
53
Example program
54
54
---------------
Original file line number Diff line number Diff line change @@ -227,6 +227,7 @@ def run(self):
227
227
# Same here.
228
228
extras_require = {
229
229
"dmypy" : "psutil >= 4.0" ,
230
+ "mypyc" : "setuptools >= 50" ,
230
231
"python2" : "" ,
231
232
"reports" : "lxml" ,
232
233
"install-types" : "pip" ,
You can’t perform that action at this time.
0 commit comments