-
Notifications
You must be signed in to change notification settings - Fork 37
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
119 changed files
with
4,045 additions
and
1,380 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,43 @@ | ||
name: DocsTest | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- develop | ||
schedule: | ||
- cron: '0 0 * * 0' # weekly | ||
|
||
jobs: | ||
build: | ||
name: Build Docs | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
python-version: [3.7, 3.8] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Get pip cache dir | ||
id: pip-cache-dir | ||
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: pip cache | ||
id: pip-cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.pip-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Python Packages Install | ||
run: | | ||
python -m pip install --upgrade pip # upgrade pip | ||
pip install wheel | ||
pip install .[skl,stats,docs] | ||
- name: Build | ||
run: | | ||
cd docs && make html |
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,83 @@ | ||
name: Unittest | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- develop | ||
schedule: | ||
- cron: '0 0 * * 0' # weekly | ||
|
||
jobs: | ||
unit_tests: | ||
name: Unit Tests | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
python-version: [3.6, 3.7, 3.8] | ||
exclude: | ||
# excludes py38 on macOS, which seems to stall currently | ||
- os: macos-latest | ||
python-version: 3.8 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Get pip cache dir | ||
id: pip-cache-dir | ||
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: pip cache | ||
id: pip-cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.pip-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Python Packages Install | ||
run: | | ||
python -m pip install --upgrade pip # upgrade pip | ||
pip install wheel | ||
pip install -q pytest pytest-runner pytest-cov coverage codacy-coverage | ||
pip install coveralls | ||
pip install .[skl,stats] | ||
- name: Test Windows | ||
if: runner.os == 'Windows' | ||
env: | ||
MPLBACKEND: Agg | ||
run: python setup.py test | ||
- name: Test MacOS | ||
if: runner.os == 'macOS' | ||
run: python setup.py test | ||
- name: Prep Linux | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt-get install jq curl # codacy requirement | ||
sudo apt-get install xvfb | ||
- name: Test Linux | ||
if: runner.os == 'Linux' | ||
run: | | ||
xvfb-run python setup.py test | ||
- name: Coveralls | ||
env: | ||
COVERALLS_SERVICE_NAME: github | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COVERALLS_FLAG_NAME: ${{ matrix.test-name }} | ||
COVERALLS_PARALLEL: true | ||
run: | | ||
coveralls | ||
coveralls: | ||
name: Indicate completion to coveralls.io | ||
needs: unit_tests | ||
runs-on: ubuntu-latest | ||
container: python:3-slim | ||
steps: | ||
- name: Finished | ||
run: | | ||
pip3 install --upgrade coveralls | ||
coveralls --finish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
-e .[docs,skl] | ||
.[docs,skl] |
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,46 @@ | ||
|
||
pyrolite\.util\.lambdas | ||
------------------------------- | ||
.. automodule:: pyrolite.util.lambdas | ||
:members: | ||
:undoc-members: | ||
|
||
pyrolite\.util\.lambdas\.params | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
.. automodule:: pyrolite.util.lambdas.params | ||
:members: | ||
:undoc-members: | ||
|
||
|
||
pyrolite\.util\.lambdas\.eval | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
.. automodule:: pyrolite.util.lambdas.eval | ||
:members: | ||
:undoc-members: | ||
|
||
|
||
pyrolite\.util\.lambdas\.oneill | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
.. automodule:: pyrolite.util.lambdas.oneill | ||
:members: | ||
:undoc-members: | ||
|
||
|
||
pyrolite\.util\.lambdas\.opt | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
.. automodule:: pyrolite.util.lambdas.opt | ||
:members: | ||
:undoc-members: | ||
|
||
|
||
pyrolite\.util\.lambdas\.plot | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
.. automodule:: pyrolite.util.lambdas.plot | ||
:members: | ||
:undoc-members: | ||
|
||
pyrolite\.util\.lambdas\.transform | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
.. automodule:: pyrolite.util.lambdas.transform | ||
:members: | ||
:undoc-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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pyrolite\.util\.resampling | ||
------------------------------- | ||
.. automodule:: pyrolite.util.resampling | ||
:members: | ||
:undoc-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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pyrolite\.util\.spatial | ||
------------------------------- | ||
.. automodule:: pyrolite.util.spatial | ||
:members: | ||
:undoc-members: |
Oops, something went wrong.