Skip to content

Commit 7965b51

Browse files
committed
last try to use have py3.13 run on github actions
1 parent 6476eff commit 7965b51

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
architecture: ${{ matrix.architecture }}
2424
- name: Cache pip 3.8
2525
if: matrix.python-version == 3.8
26-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2727
with:
2828
# This path is specific to Ubuntu
2929
path: ~/.cache/pip
@@ -34,7 +34,9 @@ jobs:
3434
${{ runner.os }}-
3535
- name: Cache pip
3636
if: matrix.python-version != 3.8
37-
uses: actions/cache@v4
37+
env:
38+
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1"
39+
uses: actions/cache@v5
3840
with:
3941
# This path is specific to Ubuntu
4042
path: ~/.cache/pip
@@ -48,7 +50,6 @@ jobs:
4850
run: |
4951
# workaround for 3.13, SEE: https://github.com/pypa/setuptools/issues/3661#issuecomment-1813845177
5052
pip install --upgrade setuptools
51-
pip install maturin
5253
- name: Install dependencies
5354
if: matrix.python-version > 3.9
5455
run: pip install -r requirements-dev.txt

0 commit comments

Comments
 (0)