Skip to content

Commit

Permalink
Drop this pipx run build nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed Mar 9, 2023
1 parent 886a511 commit ea8ee18
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.10'

- name: Set up QEMU
if: runner.os == 'Linux'
Expand All @@ -38,8 +38,18 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'

- name: Install build-time dependencies
run: |
python -m pip install --upgrade pip
python -m pip install cython numpy pkgconfig
- name: Build sdist
run: pipx run build --sdist
run: python setup.py sdist

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit ea8ee18

Please sign in to comment.