Skip to content
This repository was archived by the owner on May 23, 2022. It is now read-only.

Commit a2bc455

Browse files
committed
Fix Pypi
1 parent 43cf116 commit a2bc455

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/pypi_deployer.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,18 @@ jobs:
3030
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
3131
steps:
3232
- uses: actions/checkout@v2
33-
- name: build and upload manylinux wheels
34-
uses: Niraj-Kamdar/manylinux-wheel-builder@master
33+
- name: Set up Python
34+
uses: actions/setup-python@v2
3535
with:
36-
python-versions: "3.*"
37-
# if true then github actions won't stop even if build for this job fails
38-
#continue-on-error: true
36+
python-version: ${{ matrix.python-version }}
37+
- name: build wheel
38+
run: |
39+
pip install wheel
40+
python setup.py bdist_wheel --universal
41+
- name: upload wheel
42+
run: |
43+
pip install twine
44+
twine upload dist/*
3945
4046
# Build and deploy wheels for macos and windows using setup-python action.
4147
# This has nothing to do with manylinux-wheel-builder.

0 commit comments

Comments
 (0)