3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-15 11:35:42 +00:00

Skip macOS wheels when publishing nightly artifacts to test.PyPI

This commit is contained in:
copilot-swe-agent[bot] 2026-07-14 03:18:15 +00:00 committed by GitHub
parent b87c6cf600
commit 4f4176d0c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -915,6 +915,13 @@ jobs:
name: PythonPackages
path: dist
- name: Exclude macOS wheels unsupported by test.PyPI
run: |
# test.PyPI rejects current macOS wheel tags (for example macosx_13_3_*).
# Keep publishing sdist + Linux/Windows wheels so this validation job remains useful.
rm -f dist/*-macosx_*.whl
ls -l dist
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with: