-
Notifications
You must be signed in to change notification settings - Fork 2
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
10 changed files
with
104 additions
and
129 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Kng on Linux | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 5 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11 | ||
- name: setup-conda | ||
uses: s-weigand/[email protected] | ||
with: | ||
update-conda: true | ||
python-version: 3.11 | ||
- name: Install dependencies | ||
run: | | ||
conda config --add channels conda-forge | ||
conda install appdirs cartopy gdal matplotlib-base numpy psutil pyproj qt-material | ||
pip install PySide6 | ||
pip install hyo2.abc2 | ||
sudo apt-get install -y libegl1 | ||
pip install --no-deps . | ||
- name: Lint with flake8 | ||
run: | | ||
conda install flake8 | ||
# stop the build if there are Python syntax errors or undefined names | ||
flake8 ./hyo2/kng --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
flake8 ./hyo2/kng --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
continue-on-error: true | ||
- name: Test with pytest | ||
run: | | ||
pip install coveralls PyYAML pytest pytest-cov | ||
py.test --cov | ||
coverage report -m | ||
coveralls | ||
continue-on-error: false |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Kng on Windows | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
strategy: | ||
max-parallel: 5 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11 | ||
- name: setup-conda | ||
uses: s-weigand/[email protected] | ||
with: | ||
update-conda: true | ||
python-version: 3.11 | ||
- name: Install dependencies | ||
run: | | ||
conda config --add channels conda-forge | ||
conda install appdirs cartopy gdal matplotlib-base numpy psutil pyproj qt-material | ||
pip install PySide6 | ||
pip install hyo2.abc2 | ||
pip install --no-deps . | ||
- name: Lint with flake8 | ||
run: | | ||
conda install flake8 | ||
# stop the build if there are Python syntax errors or undefined names | ||
flake8 .\hyo2\kng --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
flake8 .\hyo2\kng --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
continue-on-error: true | ||
- name: Test with pytest | ||
run: | | ||
pip install coveralls PyYAML pytest pytest-cov | ||
py.test --cov | ||
coverage report -m | ||
coveralls | ||
continue-on-error: false |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | |
logger.addHandler(logging.NullHandler()) | ||
|
||
name = "Kng" | ||
__version__ = "1.3.0" | ||
__version__ = "1.3.1" | ||
__author__ = "[email protected]" | ||
|
||
pkg_info = PkgInfo( | ||
|
@@ -24,6 +24,7 @@ | |
latest_url="https://www.hydroffice.org/latest/sis_emu.txt", | ||
deps_dict={ | ||
"hyo2.abc2": "hyo2.abc2", | ||
"PySide6": "PySide6" | ||
"PySide6": "PySide6", | ||
"numpy": "numpy" | ||
} | ||
) |
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