We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9b4ea8e + 17ba424 commit 31dd1f9Copy full SHA for 31dd1f9
.github/workflows/pypi.yml
@@ -13,10 +13,12 @@ jobs:
13
uses: actions/setup-python@v1
14
with:
15
python-version: 3.7
16
+ - name: Install Cython and numpy
17
+ run: python3 -m pip install --user cython numpy
18
- name: Install wheel
19
run: python3 -m pip install --user --upgrade setuptools wheel
20
- name: Build a binary wheel and a source tarball
- run: python3 setup.py sdist bdist_wheel
21
+ run: python3 setup.py sdist
22
- name: Publish distribution to PyPI
23
if: startsWith(github.ref, 'refs/tags')
24
uses: pypa/gh-action-pypi-publish@master
0 commit comments