Skip to content

Commit

Permalink
add Python 3.13 support - update build_wheels.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanschnell committed Oct 10, 2024
1 parent 32674fd commit 61ed97b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
os: [ubuntu-20.04, windows-2019, macos-12]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4.1.7

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3.2.0
with:
platforms: all

- name: Build wheels
uses: pypa/cibuildwheel@v2.18.0
uses: pypa/cibuildwheel@v2.21.3
# to supply options, put them in 'env', like:
env:
# configure cibuildwheel to build native archs ('auto'), and some
Expand All @@ -37,7 +37,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4.1.7

- name: Build sdist
run: pipx run build --sdist
Expand All @@ -52,12 +52,12 @@ jobs:
# upload to PyPI on every tag
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@v1.4.2
- uses: pypa/gh-action-pypi-publish@v1.10.1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
4 changes: 2 additions & 2 deletions CHANGE_LOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
2024-XX-XX 2.9.3:
-------------------
* update cibuildwheel to 2.18.0
* bump actions/download-artifact from 2 to 4.1.7, #218
* add official Python 3.13 support
* update cibuildwheel to 2.21.3
* minor simplifications
* fix some typos

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
],
description = "efficient arrays of booleans -- C extension",
Expand Down

0 comments on commit 61ed97b

Please sign in to comment.