Skip to content

Commit d3e0809

Browse files
authored
Merge pull request #102 from tmillenaar/release_notes_0.14.1
Workaround pyo3 not building on python3.13 with env var PYO3_USE_ABI3_FORWARD_COMPATIBILITY
2 parents 7c6ff74 + dca51c3 commit d3e0809

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
args: --release --out dist --find-interpreter
2929
sccache: "true"
3030
manylinux: auto
31+
env:
32+
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1"
3133
- name: Upload wheels
3234
uses: actions/upload-artifact@v3
3335
with:
@@ -55,6 +57,8 @@ jobs:
5557
target: ${{ matrix.target }}
5658
args: --release --out dist --find-interpreter
5759
sccache: 'true'
60+
env:
61+
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1"
5862
- name: Upload wheels
5963
uses: actions/upload-artifact@v3
6064
with:
@@ -81,6 +85,8 @@ jobs:
8185
target: ${{ matrix.target }}
8286
args: --release --out dist --find-interpreter
8387
sccache: 'true'
88+
env:
89+
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1"
8490
- name: Upload wheels
8591
uses: actions/upload-artifact@v3
8692
with:
@@ -100,6 +106,8 @@ jobs:
100106
with:
101107
command: sdist
102108
args: --out dist
109+
env:
110+
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1"
103111
- name: Test installing dist
104112
run: |
105113
pip install --force-reinstall --verbose dist/*.tar.gz

0 commit comments

Comments
 (0)