Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
submodules: true

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
submodules: true

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_old.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
submodules: true

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
fetch-depth: 0

- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
name: Install Python
with:
python-version: 3.x
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
if: ${{ github.event_name }} == "pull_request"

- name: "Building ${{ matrix.os }} (${{ matrix.arch }}) wheels"
uses: pypa/cibuildwheel@v4.1.0
uses: pypa/cibuildwheel@v4.1.1
env:
CIBW_ARCHS: ${{ matrix.arch }}

Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
with:
fetch-depth: 0

- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
name: Install Python
with:
python-version: 3.x
Expand All @@ -128,7 +128,7 @@ jobs:
python=${{ matrix.python-version }} libnetcdf=4.9.3 --channel conda-forge

- name: Build wheels for Windows/Mac
uses: pypa/cibuildwheel@v4.1.0
uses: pypa/cibuildwheel@v4.1.1
env:
CIBW_ARCHS: ${{ matrix.arch }}

Expand All @@ -146,7 +146,7 @@ jobs:
with:
fetch-depth: 0

- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
name: Install Python
with:
python-version: 3.x
Expand All @@ -167,7 +167,7 @@ jobs:
echo "NETCDF4_DIR=C:\vcpkg\installed\arm64-windows" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

- name: Build wheels for Windows ARM64
uses: pypa/cibuildwheel@v4.1.0
uses: pypa/cibuildwheel@v4.1.1
env:
CIBW_ARCHS: ARM64
CIBW_SKIP: "cp310-*"
Expand Down
Loading