Skip to content

Commit d158a3a

Browse files
committed
Fix Python actions
1 parent 54c2572 commit d158a3a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/pysplashsurf_CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ jobs:
332332
merge-multiple: true
333333
- uses: actions/setup-python@v5
334334
with:
335-
python-version: 3.x
335+
python-version: 3.12
336336
- name: Install dependencies
337337
run: |
338338
python -m pip install --upgrade pip
@@ -354,13 +354,13 @@ jobs:
354354
- uses: actions/checkout@v6
355355
- uses: actions/setup-python@v5
356356
with:
357-
python-version: 3.x
357+
python-version: 3.12
358358
- name: Build wheels
359359
uses: PyO3/maturin-action@v1
360360
with:
361361
target: x86_64
362-
args: --release --out dist -m pysplashsurf/Cargo.toml
363-
manylinux: auto
362+
args: --release --out dist --auditwheel repair -m pysplashsurf/Cargo.toml
363+
manylinux: 2014
364364
- name: Get wheel name
365365
id: get_filename
366366
run: |
@@ -380,7 +380,7 @@ jobs:
380380
- uses: actions/checkout@v6
381381
- uses: actions/setup-python@v5
382382
with:
383-
python-version: 3.x
383+
python-version: 3.12
384384
- name: Download wheel
385385
uses: actions/download-artifact@v4
386386
with:
@@ -417,7 +417,7 @@ jobs:
417417
- uses: actions/checkout@v6
418418
- uses: actions/setup-python@v5
419419
with:
420-
python-version: 3.x
420+
python-version: 3.12
421421
- uses: mamba-org/setup-micromamba@v2
422422
with:
423423
environment-file: pysplashsurf/python_environment.yaml

0 commit comments

Comments
 (0)