Skip to content

Commit 0863c61

Browse files
committed
Tweaks for another release
Hopefully, this time with Linux ARM64 wheels...
1 parent be29567 commit 0863c61

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.github/workflows/release-package.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# This workflow will install Python dependencies, run tests and lint with a
2-
# variety of Python versions.
3-
# For more information see:
4-
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
51

62
name: Release package
73

@@ -14,10 +10,10 @@ jobs:
1410
runs-on: ubuntu-latest
1511
steps:
1612
- uses: actions/checkout@v4
17-
- name: Set up Python 3.12
13+
- name: Set up Python 3.13
1814
uses: actions/setup-python@v5
1915
with:
20-
python-version: '3.12'
16+
python-version: '3.13'
2117
- name: Install build dependencies
2218
run: |
2319
python -m pip install --upgrade pip
@@ -36,11 +32,11 @@ jobs:
3632
runs-on: ${{ matrix.os }}
3733
strategy:
3834
matrix:
39-
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
35+
os: [ubuntu-latest, ubuntu-24.04-arm, macos-13, macos-15, windows-latest]
4036
steps:
4137
- uses: actions/checkout@v4
4238
- name: Build wheels
43-
uses: pypa/cibuildwheel@v2.22.0
39+
uses: pypa/cibuildwheel@v2.23.3
4440
- uses: actions/upload-artifact@v4
4541
with:
4642
name: python-wheel-${{ matrix.os }}-${{ strategy.job-index }}

src/flitter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def setproctitle(title):
2020
pass
2121

2222

23-
__version__ = "1.0.0b26"
23+
__version__ = "1.0.0b27"
2424

2525
LOGGING_LEVEL = "SUCCESS"
2626
LOGGING_FORMAT = "{time:HH:mm:ss.SSS} {extra[shortname]:25} | <level>{level}: {message}</level>"

0 commit comments

Comments
 (0)