Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:

- name: install python dependencies
run: |
pip install --upgrade pip setuptools wheel numpy pyarrow build twine
pip install --no-build-isolation .
pip install --upgrade pip build twine
pip install .

- name: build sdist
run: |
python -m build --sdist --wheel --no-isolation -o wheelhouse
python -m build --sdist --wheel -o wheelhouse

- name: List and check sdist
run: |
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
ls -lAs wheels/

- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.9
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: wheels/
Expand Down
Loading