File tree 2 files changed +4
-9
lines changed
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:
55
55
but there's ``./bin/download-windows-wheels `` script that downloads built
56
56
wheels. Then upload them with ``twine ``.
57
57
- Run ``./bin/build-manylinux-wheels `` to build linux wheels and upload them to
58
- PyPI (takes ~10 minutes).
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.
61
61
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 .
63
63
- Manually create a release through https://github.com/sass/libsass-python/releases/
64
64
65
65
Ping Hong Minhee (
[email protected] , @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
2
2
"""Script for building 'manylinux' wheels for libsass.
3
3
4
4
Run me after putting the source distribution on pypi.
@@ -21,12 +21,7 @@ def check_call(*cmd):
21
21
22
22
def main ():
23
23
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' ):
30
25
with tempfile .TemporaryDirectory () as work :
31
26
pip = '/opt/python/{}/bin/pip' .format (python )
32
27
check_call (
You can’t perform that action at this time.
0 commit comments