Skip to content

Commit 31dd1f9

Browse files
authored
Merge pull request #4 from pyobs/develop
install numpy and cython and don't build wheel
2 parents 9b4ea8e + 17ba424 commit 31dd1f9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pypi.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ jobs:
1313
uses: actions/setup-python@v1
1414
with:
1515
python-version: 3.7
16+
- name: Install Cython and numpy
17+
run: python3 -m pip install --user cython numpy
1618
- name: Install wheel
1719
run: python3 -m pip install --user --upgrade setuptools wheel
1820
- name: Build a binary wheel and a source tarball
19-
run: python3 setup.py sdist bdist_wheel
21+
run: python3 setup.py sdist
2022
- name: Publish distribution to PyPI
2123
if: startsWith(github.ref, 'refs/tags')
2224
uses: pypa/gh-action-pypi-publish@master

0 commit comments

Comments
 (0)