Skip to content

Commit

Permalink
Prepare release 1.11.0 (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra authored Oct 11, 2024
1 parent da87a74 commit 944eea1
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 13 deletions.
30 changes: 22 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macOS-11]
os: [ubuntu-22.04, windows-2019, macOS-12]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.12"
Expand All @@ -27,17 +27,18 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
path: ./wheelhouse/*.whl

build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.12"
Expand All @@ -48,8 +49,9 @@ jobs:
- name: Build sdist
run: python -m build --sdist

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

upload_pypi:
Expand All @@ -59,7 +61,19 @@ jobs:
steps:
- uses: actions/[email protected]
with:
name: artifact
name: sdist
path: dist
- uses: actions/[email protected]
with:
name: ubuntu-22.04
path: dist
- uses: actions/[email protected]
with:
name: windows-2019
path: dist
- uses: actions/[email protected]
with:
name: macOS-12
path: dist
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Unreleased
## 1.11.0

- Drop support for Python 3.8; declare support for Python 3.13
- Drop support for Python 3.8; add support for Python 3.13

## 1.10.1

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
)


VERSION = "1.10.1"
VERSION = "1.11.0"


EXTENSIONS = [
Expand Down

0 comments on commit 944eea1

Please sign in to comment.