3 Commits
0.4.3 ... 0.4.4

Author SHA1 Message Date
ec7e4353bd patch: version bump 2025-05-28 17:33:49 +01:00
1ad9d10f59 Another attempt to fix windows build 2025-05-28 17:33:35 +01:00
08261aaea2 Attempt to fix readthedocs build 2025-05-28 17:31:38 +01:00
3 changed files with 12 additions and 8 deletions

View File

@@ -49,7 +49,6 @@ jobs:
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
manylinux: auto manylinux: auto
- name: Build free-threaded wheels - name: Build free-threaded wheels
if: ${{ !contains(matrix.platform.runner, 'windows') }} # Excluding because free thread build fails on windows
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
target: ${{ matrix.platform.target }} target: ${{ matrix.platform.target }}
@@ -121,12 +120,13 @@ jobs:
target: ${{ matrix.platform.target }} target: ${{ matrix.platform.target }}
args: --release --out dist args: --release --out dist
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
- name: Build free-threaded wheels # Excluded windows free threaded build, because it doesn't seem to work properly
uses: PyO3/maturin-action@v1 # - name: Build free-threaded wheels
with: # uses: PyO3/maturin-action@v1
target: ${{ matrix.platform.target }} # with:
args: --release --out dist -i python3.13t # target: ${{ matrix.platform.target }}
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} # args: --release --out dist -i python3.13t
# sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
- name: Upload wheels - name: Upload wheels
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:

View File

@@ -4,6 +4,10 @@ build:
os: ubuntu-24.04 os: ubuntu-24.04
tools: tools:
python: "3.13" python: "3.13"
jobs:
pre_install:
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- source ~/.cargo/env
sphinx: sphinx:
configuration: docs/conf.py configuration: docs/conf.py

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "read_aconity_layers" name = "read_aconity_layers"
version = "0.4.3" version = "0.4.4"
edition = "2021" edition = "2021"
[lib] [lib]