File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
- # Script for downloading mypy_mypyc wheels in preparation for a release
3
+ # Script for downloading mypyc-compiled mypy wheels in preparation for a release
4
4
5
5
import os
6
6
import os .path
16
16
MIN_VER = 5
17
17
MAX_VER = 7
18
18
BASE_URL = "https://github.com/mypyc/mypy_mypyc-wheels/releases/download"
19
- URL = "{base}/v{version}/mypy_mypyc -{version}-cp3{pyver}-cp3{pyver}m-{platform}.whl"
19
+ URL = "{base}/v{version}/mypy -{version}-cp3{pyver}-cp3{pyver}m-{platform}.whl"
20
20
21
21
def download (url ):
22
22
print ('Downloading' , url )
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ def run(self):
156
156
'Topic :: Software Development' ,
157
157
]
158
158
159
- setup (name = 'mypy' if not USE_MYPYC else 'mypy-mypyc' ,
159
+ setup (name = 'mypy' ,
160
160
version = version ,
161
161
description = description ,
162
162
long_description = long_description ,
You can’t perform that action at this time.
0 commit comments