Skip to content

Commit c42aee2

Browse files
committed
update wheel building script
1 parent c4ed324 commit c42aee2

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

CONTRIBUTING.rst

+2-2
Original file line numberDiff line numberDiff 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

6565
Ping Hong Minhee ([email protected], @dahlia on GitHub) if you need

bin/build-manylinux-wheels

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3.5
1+
#!/usr/bin/env python3
22
"""Script for building 'manylinux' wheels for libsass.
33
44
Run me after putting the source distribution on pypi.
@@ -21,12 +21,7 @@ def check_call(*cmd):
2121

2222
def 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(

0 commit comments

Comments
 (0)