Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
python-version: ['3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.ref_name }}
- uses: fortran-lang/setup-fortran@v1
if: runner.os == 'Windows'
id: setup-fortran
with:
compiler: gcc
version: 12
version: 15
- uses: fortran-lang/setup-fortran@v1
if: runner.os == 'macOS'
id: setup-fortran-macos
with:
compiler: gcc
version: 12
version: 15
- run: ${{ env.FC }} --version
if: runner.os == 'Windows'
env:
Expand All @@ -37,9 +37,9 @@ jobs:
env:
FC: ${{ steps.setup-fortran-macos.outputs.fc }}
- name: Build wheels
uses: pypa/cibuildwheel@v2.17.0
uses: pypa/cibuildwheel@v3.4.0
env:
CIBW_SKIP: pp* cp36-* cp37-* cp38-* *musllinux*
CIBW_SKIP: pp* cp36-* cp37-* cp38-* cp39-* cp310-* *musllinux*
CIBW_ARCHS_MACOS: auto64
CIBW_ARCHS_LINUX: auto64
CIBW_ARCHS_WINDOWS: auto64
Expand All @@ -51,28 +51,28 @@ jobs:
- name: Print for Debugging
run: ls ./wheelhouse
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: artifact-${{ matrix.os }}
path: ./wheelhouse/*.whl
build_sdist:
name: Build Source Distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.ref_name }}
- name: Build sdist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
path: dist/*.tar.gz

upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: dist
merge-multiple: true
Expand Down