-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
812 additions
and
450 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 |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.9", "3.11", "3.12"] | ||
python-version: ["3.9", "3.11", "3.12", "3.13"] | ||
os: [ubuntu-latest, windows-latest, macos-13] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
|
@@ -23,7 +23,7 @@ jobs: | |
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.8.3 | ||
poetry-version: 1.8.4 | ||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
id: cache | ||
|
@@ -49,7 +49,7 @@ jobs: | |
run: poetry run pytest --cov . --cov-report xml:coverage-reports/coverage-hydrolib-core.xml --junitxml=xunit-reports/xunit-result-hydrolib-core.xml | ||
|
||
- name: Autoformat code if the check fails | ||
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == 3.12) }} | ||
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == 3.13) }} | ||
run: | | ||
poetry run isort . | ||
poetry run black . | ||
|
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 |
---|---|---|
|
@@ -12,12 +12,12 @@ jobs: | |
fetch-depth: 0 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
python-version: 3.13 | ||
|
||
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.8.3 | ||
poetry-version: 1.8.4 | ||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
id: cache | ||
|
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 |
---|---|---|
|
@@ -13,12 +13,12 @@ jobs: | |
fetch-depth: 0 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
python-version: 3.13 | ||
|
||
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.8.3 | ||
poetry-version: 1.8.4 | ||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
id: cache | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.12] | ||
python-version: [3.13] | ||
os: [ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
|
@@ -29,7 +29,7 @@ jobs: | |
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.8.3 | ||
poetry-version: 1.8.4 | ||
|
||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
|
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 |
---|---|---|
|
@@ -36,12 +36,12 @@ jobs: | |
- name: Set up python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
python-version: 3.13 | ||
|
||
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.8.3 | ||
poetry-version: 1.8.4 | ||
|
||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.8.0" | ||
__version__ = "0.8.1" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from .models import Boundary, ExtGeneral, ExtModel, Lateral, Meteo | ||
from .models import Boundary, ExtGeneral, ExtModel, Lateral, Meteo, SourceSink | ||
|
||
__all__ = [ | ||
"Boundary", | ||
"Lateral", | ||
"Meteo", | ||
"ExtGeneral", | ||
"ExtModel", | ||
"SourceSink", | ||
] |
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.