Skip to content

Commit ddfa9bb

Browse files
committed
release v20.0.0
1 parent adff792 commit ddfa9bb

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/build.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,7 @@ jobs:
206206
needs:
207207
- test
208208
runs-on: ubuntu-latest
209-
if: >
210-
github.event_name == 'push'
211-
&&
212-
(github.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags'))
209+
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags'))
213210

214211
steps:
215212
- uses: actions/checkout@v4
@@ -241,8 +238,7 @@ jobs:
241238
- sdist
242239
- linux-wheels-arm
243240
runs-on: ubuntu-latest
244-
if: >
245-
github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
241+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
246242

247243
steps:
248244
- uses: actions/download-artifact@v4
@@ -254,8 +250,8 @@ jobs:
254250
- run: ls -l dist
255251

256252
- name: Push build artifacts to PyPI
257-
uses: pypa/gh-action-pypi-publish@v1.8.11
253+
uses: pypa/gh-action-pypi-publish@release/v1
258254
with:
259-
skip_existing: true
255+
skip-existing: true
260256
user: __token__
261257
password: ${{ secrets.PYPI_API_TOKEN }}

docs/history.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@
44

55
Important changes are emphasized.
66

7-
## master
8-
97
## Unreleased
108

9+
## 20.0.0
10+
11+
- **Breaking:** CMake is now a build dependency; this is only a breaking change for redistributors as building with standard Python packaging tools will automatically use the CMake that is available on PyPI
12+
- **Breaking:** Stop building wheels for Windows 32-bit
13+
- Build wheels for Windows ARM64
14+
1115
## 19.0.1
1216

1317
- Fix regression in Windows wheels

docs/install.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Binary wheels are available for most platforms and require at least version `19.
1515
| | | | | |
1616
| --- | --- | --- | --- | --- |
1717
| | macOS | Windows | Linux (glibc) | Linux (musl) |
18-
| CPython 3.7 | <ul><li>x86_64</li></ul> | <ul><li>x86_64</li><li>x86</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
19-
| CPython 3.8 | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>x86</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
20-
| CPython 3.9 | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>x86</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
21-
| CPython 3.10 | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>x86</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
22-
| CPython 3.11 | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>x86</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
18+
| CPython 3.8 | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
19+
| CPython 3.9 | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
20+
| CPython 3.10 | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
21+
| CPython 3.11 | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
22+
| CPython 3.12 | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>ARM64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> | <ul><li>x86_64</li><li>i686</li><li>AArch64</li></ul> |
2323

2424
## Source
2525

0 commit comments

Comments
 (0)