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
6 changes: 4 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Wheels

on:
# temporarily add PR for this PR to test
pull_request:
push:
branches:
- main
Expand Down Expand Up @@ -28,10 +30,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools twine wheel
pip install setuptools twine wheel build
- name: Build a source distribution and a wheel
run: |
python setup.py sdist bdist_wheel
python -m build --sdist --wheel
python -m twine check --strict dist/*
- name: Upload artifacts
uses: actions/upload-artifact@v4
Expand Down
Loading