Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add cp313 to cibuildwheel; update to upload/download artifact v4 #115

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-22.04, macos-13, windows-latest]

env:
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* pp37-* pp38-* pp39-* pp310-*"
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* pp37-* pp38-* pp39-* pp310-*"
CIBW_SKIP: "cp36-* pp* *-win_arm64 *-musllinux_aarch64"
CIBW_ARCHS_LINUX: "x86_64 i686 aarch64"

Expand All @@ -29,7 +29,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
delocate-listdeps --all {dest_dir}/$WHEEL_SIMPLE_FILENAME

echo "DONE."
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl

Expand All @@ -91,16 +91,16 @@ jobs:
pip install build
python -m build . --sdist

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz

upload_pypi:
needs: [build_wheels, build_wheels_macos_arm64, build_sdist]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
os: [ubuntu-22.04, macos-13, windows-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]

steps:
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ This is as simple as it can be::
At the moment wheels (which require no build) are provided for the following platforms,
on other platforms the source package is used and a compiler is required:

+ Linux: Python 3.7 - 3.12 / x86_64, arm64
+ MacOS: Python 3.7 - 3.12 / x86_64, arm64
+ Windows: Python 3.7 - 3.12 / 32- & 64-bit
+ Linux: Python 3.7 - 3.13 / x86_64, arm64
+ MacOS: Python 3.7 - 3.13 / x86_64, arm64
+ Windows: Python 3.7 - 3.13 / 32- & 64-bit

CLI
===
Expand Down