Skip to content

Commit

Permalink
Fix Github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganesan authored and Ganesan committed Aug 4, 2024
1 parent 7aae402 commit 2089be3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pypi-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["cp39", "cp310", "cp311"]

steps:
- uses: actions/checkout@v4
- name: Build Wheels
uses: pypa/cibuildwheel@v2.20.0
- uses: actions/upload-artifact@v4.3.5
uses: pypa/cibuildwheel@v2.16.5
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

build_sdist:
name: Build Source Distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build sdist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4.3.5
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

Expand Down

0 comments on commit 2089be3

Please sign in to comment.