-
Notifications
You must be signed in to change notification settings - Fork 6
Set the dimension for R_closed_wall and Z_closed_wall to 'closed_wall' #191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
20cf055
3a7295f
f8b3599
ecf24f2
9cf96c0
3e39be6
ae08894
7a6e5a0
a692cd2
0f1759d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,10 @@ | |
| name: Python package | ||
|
|
||
| on: | ||
| [push, pull_request] | ||
| push: | ||
| pull_request: | ||
| schedule: | ||
| - cron: 25 1 3 * * | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow}}-${{ github.ref }} | ||
|
|
@@ -18,7 +21,7 @@ jobs: | |
| if: always() | ||
| strategy: | ||
| matrix: | ||
| python-version: ['3.10', '3.11', '3.12'] | ||
| python-version: ['3.10', '3.11', '3.12', '3.13'] | ||
| fail-fast: false | ||
|
|
||
| steps: | ||
|
|
@@ -42,7 +45,7 @@ jobs: | |
| if: always() | ||
| strategy: | ||
| matrix: | ||
| python-version: ['3.10', '3.11', '3.12'] | ||
| python-version: ['3.10', '3.11', '3.12', '3.13'] | ||
| fail-fast: false | ||
|
|
||
| steps: | ||
|
|
@@ -59,7 +62,7 @@ jobs: | |
| pip install .[tests] | ||
| - name: Integrated tests | ||
| run: | | ||
| pip install pytest xarray | ||
| pip install pytest "xarray!=2025.6.0" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it worth putting these version constraints in the
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. xarray's only in |
||
| cd integrated_tests/ | ||
| ./test_suite.py | ||
|
|
||
|
|
@@ -120,6 +123,7 @@ jobs: | |
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install pytest "xarray!=2025.6.0" # Install explicitly so we can avoid this buggy version | ||
| pip install xbout | ||
| pip install -e . | ||
| - name: Utilities | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.