Skip to content

Commit 3cafb75

Browse files
committed
Fix up wheels build
1 parent d692c8e commit 3cafb75

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

.github/workflows/release-wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: release-deploy
33
on:
44
release:
55
types: [ published ]
6-
# push:
7-
# branches: [ main ]
8-
# pull_request:
6+
push:
7+
branches: [ main ]
8+
pull_request:
99

1010
jobs:
1111
build-sdist:
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/setup-python@v5
2525
name: Install Python
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.11'
2828

2929
- name: Build sdist
3030
run: |
@@ -170,13 +170,13 @@ jobs:
170170
- uses: actions/setup-python@v5
171171
name: Install Python
172172
with:
173-
python-version: '3.10'
173+
python-version: '3.11'
174174

175175
- name: Install cibuildwheel
176176
run: |
177177
python -m pip install -U pip
178178
python -m pip install -U setuptools-rust
179-
python -m pip install cibuildwheel>=3.1.3
179+
python -m pip install -U cibuildwheel>=3.1.4
180180
181181
- name: Build wheels
182182
env:

docs/release_notes/v2.2.0.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@
33
2.2.0
44
=====
55

6+
Changes
7+
.......
8+
9+
* Use PyO3 v0.26.0
10+
* Supported Python versions are 3.10 to 3.14
11+
612
Enhancements
713
............
814

9-
* Added support for encoding and decoding RLE data with a *Bits Allocated* of 1
15+
* Added support for *Bits Allocated* 1
16+
* Added `pack_bit()` and `unpack_bits()` functions

0 commit comments

Comments
 (0)