-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [#135] initial implementation of NLDI data access * [#135] adding additional NLDI data access functionality * [#135] convert boolean type query parameters to string type * [#135] setting default distance to 5 kms for flowlines * [#135] tests for NLDI data access * Set NLDI optional dependency * Fix python-package.yml * Rollback geopandas for Python 3.8 * Throw warning to install geopandas --------- Co-authored-by: thodson <[email protected]>
- Loading branch information
1 parent
593f420
commit 786e811
Showing
14 changed files
with
2,323 additions
and
56 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 |
---|---|---|
|
@@ -10,32 +10,31 @@ jobs: | |
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
- name: Install dataretrieval, dependencies, and Sphinx then build docs | ||
shell: bash -l {0} | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements-dev.txt | ||
pip install . | ||
sudo apt update -y && sudo apt install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended dvipng pandoc | ||
(cd docs && make docs) | ||
(cd docs && make html) | ||
- name: Debug | ||
run: | | ||
echo $REF | ||
echo $EVENT_NAME | ||
echo ${{ github.event_name == 'push' }} | ||
echo ${{ github.ref == 'refs/heads/master' }} | ||
echo ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | ||
- name: Deploy to GitHub Pages | ||
uses: JamesIves/[email protected] | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | ||
with: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
- name: Install dataretrieval, dependencies, and Sphinx then build docs | ||
shell: bash -l {0} | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install .[doc] | ||
sudo apt update -y && sudo apt install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended dvipng pandoc | ||
(cd docs && make docs) | ||
(cd docs && make html) | ||
- name: Debug | ||
run: | | ||
echo $REF | ||
echo $EVENT_NAME | ||
echo ${{ github.event_name == 'push' }} | ||
echo ${{ github.ref == 'refs/heads/master' }} | ||
echo ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | ||
- name: Deploy to GitHub Pages | ||
uses: JamesIves/[email protected] | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
EVENT_NAME: ${{ github.event_name }} | ||
REF: ${{ github.ref }} | ||
BRANCH: gh-pages | ||
FOLDER: docs/build/html | ||
FOLDER: docs/build/html |
Oops, something went wrong.