Skip to content

Commit 184500a

Browse files
committed
Update actions
1 parent c4d978e commit 184500a

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
os: [ubuntu-latest, macos-latest]
37-
python-version: [ "3.11", "3.12" ]
37+
python-version: [ "3.11", "3.12", "3.13" ]
3838
toolchain:
3939
- {fortran-compiler: gcc, fc-version: 13}
4040
# - {fortran-compiler: intel, fc-version: '2024.1'}
@@ -101,7 +101,7 @@ jobs:
101101
fail-fast: false
102102
matrix:
103103
os: [ubuntu-latest, macos-latest]
104-
python-version: [ "3.11", "3.12" ]
104+
python-version: [ "3.11", "3.12", "3.13" ]
105105
toolchain:
106106
- {fortran-compiler: gcc, fc-version: 13}
107107
# - {fortran-compiler: intel, fc-version: '2024.1'}

.github/workflows/publish-to-test-pypi.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ubuntu-latest, macos-latest]
22-
python-version: [ "3.11", "3.12" ]
22+
python-version: [ "3.11", "3.12", "3.13" ]
2323
toolchain:
2424
- {fortran-compiler: gcc, fc-version: 13}
2525

@@ -57,7 +57,7 @@ jobs:
5757
- name: Store the distribution packages
5858
uses: actions/upload-artifact@v4
5959
with:
60-
name: ${{ matrix.python-version }}-${{ matrix.os }}-${{ matrix.toolchain.fortran-compiler }}${{ matrix.toolchain.fc-version }}
60+
name: raffle-dist-${{ matrix.python-version }}-${{ matrix.os }}-${{ matrix.toolchain.fortran-compiler }}${{ matrix.toolchain.fc-version }}
6161
path: dist/
6262

6363
- name: Release assets
@@ -85,8 +85,9 @@ jobs:
8585
- name: Download all the dists
8686
uses: actions/download-artifact@v4
8787
with:
88-
name: python-package-distributions
88+
pattern: raffle-dist-*
8989
path: dist/
90+
merge-multiple: true
9091
- name: Publish distribution 📦 to PyPI
9192
uses: pypa/gh-action-pypi-publish@release/v1
9293

@@ -108,8 +109,9 @@ jobs:
108109
- name: Download all the dists
109110
uses: actions/download-artifact@v4
110111
with:
111-
name: python-package-distributions
112+
pattern: raffle-dist-*
112113
path: dist/
114+
merge-multiple: true
113115
- name: Sign the dists with Sigstore
114116
uses: sigstore/gh-action-sigstore-python@v3.0.0
115117
with:
@@ -152,8 +154,9 @@ jobs:
152154
- name: Download all the dists
153155
uses: actions/download-artifact@v4
154156
with:
155-
name: python-package-distributions
157+
pattern: raffle-dist-*
156158
path: dist/
159+
merge-multiple: true
157160
- name: Publish distribution 📦 to TestPyPI
158161
uses: pypa/gh-action-pypi-publish@release/v1
159162
with:

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
os: [ubuntu-latest, macos-latest]
39-
python-version: [ "3.11", "3.12" ]
39+
python-version: [ "3.11", "3.12", "3.13" ]
4040
toolchain:
4141
- {fortran-compiler: gcc, fc-version: 13}
4242
# - {compiler: intel, version: '2024.1'}

0 commit comments

Comments
 (0)