-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci(release): update version to 1.2.11.dev0 * ci: fix schedule for windows (#193) * fix(requests): update available assets (#194) Add macarm.zip asset * chore: reformat Python code with line length = 88 (#198) Reformat the code with a maximum line length of 88 characters to better represent the code. See modflowpy/flopy#2362 for a related PR with rational and discussion. Also change some of Ruff's configuration: - Remove target-version, since it is automatically evaluated from pyproject.toml - Remove include so that Ruff will work globally in this repo * fix: cleanup _get_optlevel verbose param in pymake_base (#199) Co-authored-by: mjreno <[email protected]> * refactor: clean-up strings and Path related aspects, add a few Ruff rules (#200) Refactor a few semi-related aspects: - Revise strings and whitespace using a few methods with Ruff and manual edits - Revise a few aspects of pathlib.Path -- these changes are added here to shorten some string formatting, but remain consistent throughout the code base - Fix one more instance of removed verbose parameter in _get_optlevel(), similar to #199 - Apply Ruff pyupgrade (UP) rules - Apply Ruff section-underline-matches-section-length (D409) rule - Apply Ruff-specific rules (RUF) * build(deps): bump dawidd6/action-download-artifact from 6 to 7 (#201) * update for mf6.6.0 (#203) * fix fortran submodule evaluation * update sutra and mfusg_gsi versions. * update pixi version * ci(release): set version to 1.3.0 --------- Co-authored-by: wpbonelli <[email protected]> Co-authored-by: jdhughes-usgs <[email protected]> Co-authored-by: Mike Taves <[email protected]> Co-authored-by: mjreno <[email protected]> Co-authored-by: mjreno <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
516b61e
commit 9e611df
Showing
38 changed files
with
6,653 additions
and
6,485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,19 +27,19 @@ jobs: | |
matrix: | ||
include: | ||
# test latest gcc and python | ||
- {os: ubuntu-latest, FC: gcc, FC_V: 13} | ||
- {os: macos-latest, FC: gcc, FC_V: 13} | ||
- {os: windows-latest, FC: gcc, FC_V: 13} | ||
- {os: ubuntu-latest, FC: gcc, FC_V: 13, shell: bash} | ||
- {os: macos-latest, FC: gcc, FC_V: 13, shell: bash} | ||
- {os: windows-latest, FC: gcc, FC_V: 13, shell: pwsh} | ||
# test latest python and intel-classic | ||
- {os: ubuntu-latest, FC: intel-classic, FC_V: 2021.7} | ||
- {os: macos-13, FC: intel-classic, FC_V: 2021.7} | ||
- {os: windows-2019, FC: intel-classic, FC_V: 2021.7} | ||
- {os: ubuntu-latest, FC: intel-classic, FC_V: 2021.7, shell: bash} | ||
- {os: macos-13, FC: intel-classic, FC_V: 2021.7, shell: bash} | ||
- {os: windows-2019, FC: intel-classic, FC_V: 2021.7, shell: pwsh} | ||
# test latest python and previous gcc | ||
- {os: ubuntu-latest, FC: gcc, FC_V: 12} | ||
- {os: ubuntu-latest, FC: gcc, FC_V: 11} | ||
- {os: ubuntu-latest, FC: gcc, FC_V: 12, shell: bash} | ||
- {os: ubuntu-latest, FC: gcc, FC_V: 11, shell: bash} | ||
defaults: | ||
run: | ||
shell: bash | ||
shell: ${{ matrix.shell }} | ||
|
||
steps: | ||
- name: Checkout repo | ||
|
@@ -57,7 +57,7 @@ jobs: | |
- name: Setup pixi | ||
uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.19.1 | ||
pixi-version: v0.34.0 | ||
manifest-path: "pixi.toml" | ||
|
||
- name: pixi post-install | ||
|
@@ -91,7 +91,6 @@ jobs: | |
- name: test on Windows | ||
if: runner.os == 'Windows' | ||
shell: pwsh | ||
run: | | ||
pixi run autotest-base | ||
|
@@ -122,16 +121,16 @@ jobs: | |
matrix: | ||
include: | ||
# test latest gcc and python | ||
- {os: ubuntu-latest, FC: gcc, FC_V: 13} | ||
- {os: macos-latest, FC: gcc, FC_V: 13} | ||
- {os: windows-latest, FC: gcc, FC_V: 13} | ||
- {os: ubuntu-latest, FC: gcc, FC_V: 13, shell: bash} | ||
- {os: macos-latest, FC: gcc, FC_V: 13, shell: bash} | ||
- {os: windows-latest, FC: gcc, FC_V: 13, shell: pwsh} | ||
# test latest python and intel | ||
- {os: ubuntu-latest, FC: intel-classic, FC_V: 2021.7} | ||
- {os: macos-13, FC: intel-classic, FC_V: 2021.7} | ||
- {os: windows-2019, FC: intel-classic, FC_V: 2021.7} | ||
- {os: ubuntu-latest, FC: intel-classic, FC_V: 2021.7, shell: bash} | ||
- {os: macos-13, FC: intel-classic, FC_V: 2021.7, shell: bash} | ||
- {os: windows-2019, FC: intel-classic, FC_V: 2021.7, shell: pwsh} | ||
defaults: | ||
run: | ||
shell: bash | ||
shell: ${{ matrix.shell }} | ||
|
||
steps: | ||
- name: Checkout repo | ||
|
@@ -149,7 +148,7 @@ jobs: | |
- name: Setup pixi | ||
uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.19.1 | ||
pixi-version: v0.34.0 | ||
manifest-path: "pixi.toml" | ||
|
||
- name: pixi post-install | ||
|
@@ -170,13 +169,13 @@ jobs: | |
- name: Run scheduled tests | ||
run: | | ||
pixi run autotest-schedule | ||
- name: Upload failed test output | ||
if: failure() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: failed-schedule-${{ matrix.os }}-${{ matrix.FC }}-${{ matrix.FC_V }} | ||
path: ./autotest/.failed | ||
path: autotest/.failed | ||
|
||
- name: Print coverage report before upload | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ jobs: | |
- name: Setup pixi | ||
uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.19.1 | ||
pixi-version: v0.34.0 | ||
manifest-path: "pixi.toml" | ||
|
||
- name: Lint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ jobs: | |
- name: Setup pixi | ||
uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.19.1 | ||
pixi-version: v0.34.0 | ||
manifest-path: "pixi.toml" | ||
|
||
- name: pixi post-install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.