Skip to content
Merged
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
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,16 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest

steps:
- uses: actions/checkout@v4

- name: Build Wheels
run: |
python -m pip install --upgrade pip
pip install netCDF4>=1.5.4 --only-binary :all:
pip install netCDF4>=1.5.4
pip install build numpy pandas pytest
python -m build --wheel

Expand All @@ -97,10 +99,17 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: "ubuntu-latest"
artifact: loopprojectfile-wheels-ubuntu-latest
- os: "macos-latest"
artifact: loopprojectfile-wheels-macos-latest
- os: "windows-latest"
artifact: loopprojectfile-wheels-windows-latest

steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -125,7 +134,7 @@ jobs:
shell: bash
run: |
pip install --upgrade pip
pip install netCDF4>=1.5.4 --only-binary :all:
pip install netCDF4>=1.5.4
pip install numpy pandas pytest
pip install --no-cache --pre --no-index --find-links dist loopprojectfile
pip list
Expand Down
Loading