This repository was archived by the owner on Oct 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,11 @@ Here's a brief check list for releasing a new version:
5555 but there's ``./bin/download-windows-wheels `` script that downloads built
5656 wheels. Then upload them with ``twine ``.
5757- Run ``./bin/build-manylinux-wheels `` to build linux wheels and upload them to
58- PyPI (takes ~10 minutes).
58+ PyPI (takes ~5 minutes).
5959- The `docs website `__ also has to be updated.
6060 It's currently a static website deployed on GitHub Pages.
6161 Use ``python setup.py upload_doc `` command.
62- Although it seems possible to be automated using Travis .
62+ Although it seems possible to be automated using Github Actions .
6363- Manually create a release through https://github.com/sass/libsass-python/releases/
6464
6565Ping Hong Minhee (hongminhee@member.fsf.org, @dahlia on GitHub) if you need
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python3.5
1+ #!/usr/bin/env python3
22"""Script for building 'manylinux' wheels for libsass.
33
44Run me after putting the source distribution on pypi.
@@ -21,12 +21,7 @@ def check_call(*cmd):
2121
2222def main ():
2323 os .makedirs ('dist' , exist_ok = True )
24- for python in (
25- 'cp27-cp27mu' ,
26- 'cp35-cp35m' ,
27- 'cp36-cp36m' ,
28- 'cp37-cp37m' ,
29- ):
24+ for python in ('cp27-cp27mu' , 'cp36-cp36m' ):
3025 with tempfile .TemporaryDirectory () as work :
3126 pip = '/opt/python/{}/bin/pip' .format (python )
3227 check_call (
You can’t perform that action at this time.
0 commit comments