Skip to content

Commit

Permalink
sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
bgilbert committed Nov 1, 2023
1 parent 210a1c0 commit 16e10ce
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ jobs:
# last upstream patch releases with installers.
# https://github.com/actions/setup-python/issues/439#issuecomment-1247646682
include:
- os: ubuntu-latest
python-version: "3.12"
sdist: sdist
- os: macos-latest
python-version: "3.9"
upstream-python: 3.9.13
Expand Down Expand Up @@ -75,7 +78,10 @@ jobs:
esac
- name: Build wheel
run: |
python -m build -w
if [ -z "${{ matrix.sdist }}" ]; then
wheel_only=-w
fi
python -m build $wheel_only
case "${{ matrix.os }}" in
ubuntu-*)
mkdir old
Expand Down

0 comments on commit 16e10ce

Please sign in to comment.