We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afac856 commit 44e9138Copy full SHA for 44e9138
.github/workflows/pythonpublish.yml
@@ -6,7 +6,7 @@ on:
6
7
jobs:
8
deploy:
9
- runs-on: ubuntu-latest
+ runs-on: macos-latest
10
steps:
11
- uses: actions/checkout@v2
12
- name: Set up Python
@@ -16,12 +16,11 @@ jobs:
16
- name: Install dependencies
17
run: |
18
python -m pip install --upgrade pip
19
- pip install setuptools wheel==0.34.2 twine auditwheel
+ pip install setuptools wheel twine
20
- name: Build and publish
21
env:
22
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME_Y }}
23
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD_Y }}
24
25
python setup.py sdist bdist_wheel
26
- auditwheel repair dist/*.whl
27
twine upload dist/*
0 commit comments