File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ Here's a brief check list for releasing a new version:
54
54
CI build takes a while. These wheels are not automatically uploaded,
55
55
but there's ``./bin/download-windows-wheels `` script that downloads built
56
56
wheels. Then upload them with ``twine ``.
57
- - Run ``./bin/build-manylinux -wheels `` to build linux wheels and upload them to
57
+ - Run ``./bin/build-linux -wheels `` to build linux wheels and upload them to
58
58
PyPI (takes ~5 minutes).
59
59
- The `docs website `__ also has to be updated.
60
60
It's currently a static website deployed on GitHub Pages.
Original file line number Diff line number Diff line change @@ -21,17 +21,17 @@ def check_call(*cmd):
21
21
22
22
def main ():
23
23
os .makedirs ('dist' , exist_ok = True )
24
- for python in ('cp27-cp27mu ' , 'cp36-cp36m ' ):
24
+ for platform in ('manylinux1 ' , 'musllinux_1_1 ' ):
25
25
with tempfile .TemporaryDirectory () as work :
26
- pip = f '/opt/python/{ python } /bin/pip'
26
+ pip = '/opt/python/cp36-cp36m /bin/pip'
27
27
check_call (
28
28
'docker' , 'run' , '-ti' ,
29
29
# Use this so the files are not owned by root
30
30
'--user' , f'{ os .getuid ()} :{ os .getgid ()} ' ,
31
31
# We'll do building in /work and copy results to /dist
32
32
'-v' , f'{ work } :/work:rw' ,
33
33
'-v' , '{}:/dist:rw' .format (os .path .abspath ('dist' )),
34
- 'quay.io/pypa/manylinux1_x86_64 :latest' ,
34
+ f 'quay.io/pypa/{ platform } _x86_64 :latest' ,
35
35
'bash' , '-exc' ,
36
36
'{} wheel --verbose --wheel-dir /work --no-deps libsass && '
37
37
'auditwheel repair --wheel-dir /dist /work/*.whl' .format (pip ),
You can’t perform that action at this time.
0 commit comments