-
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.
Merge pull request #22 from TUW-GEO/develop
Update pyscaffold
- Loading branch information
Showing
530 changed files
with
570 additions
and
541 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
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,70 @@ | ||
name: ubuntu | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * *' # daily | ||
|
||
jobs: | ||
build: | ||
name: Build py${{ matrix.python-version }} @ ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
python-version: ['3.6'] | ||
os: ["ubuntu-latest"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: conda-incubator/[email protected] | ||
with: | ||
miniconda-version: "latest" | ||
auto-update-conda: true | ||
python-version: ${{ matrix.python-version }} | ||
environment-file: environment.yml | ||
activate-environment: pytileproj_env | ||
auto-activate-base: false | ||
- name: Print environment infos | ||
shell: bash -l {0} | ||
run: | | ||
conda info -a | ||
conda list | ||
pip list | ||
which pip | ||
which python | ||
- name: Export Environment | ||
shell: bash -l {0} | ||
run: | | ||
mkdir -p .artifacts | ||
filename=env_py${{ matrix.python-version }}_${{ matrix.os }}.yml | ||
conda env export --no-builds | grep -v "prefix" > .artifacts/$filename | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: os_py_environments | ||
path: .artifacts/* | ||
- name: Install package and test | ||
shell: bash -l {0} | ||
run: | | ||
pip install . | ||
python setup.py test | ||
- name: Upload Coverage | ||
shell: bash -l {0} | ||
run: | | ||
pip install coveralls && coveralls --service=github | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COVERALLS_FLAG_NAME: ${{ matrix.python-version }} | ||
COVERALLS_PARALLEL: true | ||
coveralls: | ||
name: Submit Coveralls | ||
needs: build | ||
runs-on: ubuntu-latest | ||
container: python:3-slim | ||
steps: | ||
- name: Finished | ||
run: | | ||
pip3 install --upgrade coveralls && coveralls --service=github --finish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,33 @@ | ||
name: Upload pypi | ||
|
||
on: | ||
# trigger only on release | ||
release: | ||
types: [published] | ||
# to trigger workflow manually from actions-tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.6 | ||
|
||
- name: Upgrade pip, install setuptools, wheel and twine | ||
run: | | ||
# Upgrade pip | ||
python -m pip install --upgrade pip | ||
# Install build dependencies | ||
python -m pip install setuptools wheel twine | ||
- name: Build and Upload to pypi | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
python -m twine upload dist/* | ||
env: | ||
TWINE_USERNAME: __token__ | ||
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} |
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,48 @@ | ||
name: windows | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * *' # daily | ||
|
||
jobs: | ||
build: | ||
name: Build py${{ matrix.python-version }} @ ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
python-version: ['3.6'] | ||
os: ['windows-latest'] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: false # does not work with self-hosted testdata | ||
- name: Checkout Testdata | ||
shell: bash -l {0} | ||
run : | | ||
git submodule init | ||
git submodule update | ||
- uses: conda-incubator/[email protected] | ||
with: | ||
miniconda-version: "latest" | ||
auto-update-conda: true | ||
python-version: ${{ matrix.python-version }} | ||
environment-file: environment.yml | ||
activate-environment: pytileproj_env | ||
auto-activate-base: false | ||
- name: Print environment infos | ||
shell: bash -l {0} | ||
run: | | ||
conda info -a | ||
conda list | ||
pip list | ||
which pip | ||
which python | ||
- name: Install package and test | ||
shell: bash -l {0} | ||
run: | | ||
pip install pytest==3.8.2 pytest-cov coverage==4.5.2 | ||
pip install . | ||
python setup.py test |
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 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
========== | ||
Developers | ||
========== | ||
============ | ||
Contributors | ||
============ | ||
|
||
* Bernhard Bauer-Marschallinger <[email protected]> | ||
* Sebastian Hahn <[email protected]> |
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.