-
Notifications
You must be signed in to change notification settings - Fork 71
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 #243 from GeoscienceAustralia/release-0.4.0
0.4.0 (2019-10-29)
- Loading branch information
Showing
445 changed files
with
7,181 additions
and
5,796 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 |
---|---|---|
|
@@ -5,13 +5,16 @@ branches: | |
- /.*-travis$/ | ||
- master | ||
|
||
os: linux | ||
dist: bionic # Ubuntu 18.04 | ||
|
||
language: python | ||
cache: pip | ||
|
||
python: 3.6 | ||
python: | ||
- "3.6" | ||
- "3.7" | ||
|
||
os: linux | ||
|
||
dist: bionic # Ubuntu 18.04 | ||
|
||
before_install: | ||
- sudo apt-get update | ||
|
@@ -22,7 +25,8 @@ before_install: | |
- export C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/include/gdal | ||
- export CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:/usr/include/gdal | ||
- pip install -U pip | ||
|
||
- pip install codecov | ||
|
||
install: | ||
- pip install -r requirements-test.txt | ||
- pip install -r requirements-dev.txt | ||
|
@@ -33,9 +37,35 @@ install: | |
|
||
# command to run tests, e.g. python setup.py test | ||
script: | ||
- pip install numpy==1.16.4 | ||
- pytest --cov-report term-missing:skip-covered --cov=pyrate tests/ | ||
|
||
# cache: | ||
# - apt | ||
# - pip | ||
# - $HOME/.cache/pip | ||
after_success: | ||
- codecov | ||
|
||
jobs: | ||
include: | ||
- stage: deploy | ||
python: 3.6 | ||
script: | ||
- pip install numpy==1.16.4 | ||
- cd docs && make html | ||
deploy: | ||
provider: pages | ||
skip-cleanup: true | ||
keep-history: true | ||
verbose: true | ||
on: | ||
branch: master | ||
github-token: $GITHUB_TOKEN | ||
local-dir: docs/_build/html | ||
project_name: PyRate | ||
email: [email protected] | ||
name: InSAR Team | ||
|
||
notifications: | ||
email: | ||
recipients: | ||
- $SHEECE_EMAIL | ||
on_success: never | ||
on_failure: always |
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
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,5 +1,5 @@ | ||
Algorithm Module | ||
================ | ||
|
||
.. automodule:: pyrate.algorithm | ||
.. automodule:: pyrate.core.algorithm | ||
:members: |
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,5 +1,5 @@ | ||
Atmospheric Phase Screen Module | ||
=============================== | ||
|
||
.. automodule:: pyrate.aps | ||
.. automodule:: pyrate.core.aps | ||
:members: |
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,5 +1,5 @@ | ||
Config Module | ||
============= | ||
|
||
.. automodule:: pyrate.config | ||
.. automodule:: pyrate.core.config | ||
:members: |
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,5 +1,5 @@ | ||
Covariance Module | ||
===================== | ||
|
||
.. automodule:: pyrate.covariance | ||
.. automodule:: pyrate.core.covariance | ||
:members: |
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,5 +1,5 @@ | ||
GAMMA Module | ||
============ | ||
|
||
.. automodule:: pyrate.gamma | ||
.. automodule:: pyrate.core.gamma | ||
:members: |
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,5 +1,5 @@ | ||
GDAL-Python Bindings Module | ||
=========================== | ||
|
||
.. automodule:: pyrate.gdal_python | ||
:members: | ||
.. automodule:: pyrate.core.gdal_python | ||
:members: |
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.