-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor maintenance release v0.4.1 (#227)
* Add research notice to readme (#206) * Update query docstring (#212) * action to automatically update uml diagrams (#208) * switch to svg * update docs with new uml diagrams. Add visualization class to components list * update action trigger to after approved pull request reviews * update variable names for clarity and in line with common usage (#211) * change 'dataset' to 'product' in core and test code * update 'source' input parameter to 'path' in variables module (part of a not-yet-implemented feature). * tests that require an active NSIDC Earthdata session (#209) * NOTE: using the fixture to successfully start a session can be considered the test * check errors raised by empty query object from bounding box split in openaltimetry visualization (#220) * updated product_summary_info function to latest fields returned by CMR (product_id --> title) (#218) * traffic/downloads statistics updates and limit traffic action to parent repo (#221) * GitHub traffic auto-update to not run traffic action on forks. * remove extra code block from example notebook (#225) * populate v0.4.1 changelog and add to index (#226) Co-authored-by: Yo Yehudi <[email protected]> Co-authored-by: Whyjay Zheng <[email protected]> Co-authored-by: Romina Piunno <[email protected]> Co-authored-by: Tian Li <[email protected]> Co-authored-by: JP Swinski <[email protected]>
- Loading branch information
1 parent
fe57c41
commit 247725c
Showing
40 changed files
with
4,701 additions
and
3,223 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,32 @@ | ||
name: Update UML diagrams | ||
on: | ||
workflow_dispatch: | ||
pull_request_review: | ||
types: [submitted] | ||
|
||
jobs: | ||
diagrams: | ||
if: github.event.review.state == 'approved' | ||
name: Update UML diagrams | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
- name: set up environment | ||
run: | | ||
pip install -r requirements.txt | ||
pip install icepyx pylint | ||
sudo apt-get install graphviz | ||
- name: run pyreverse | ||
run: | | ||
pyreverse ./icepyx/core -p user_uml -o svg | ||
pyreverse ./icepyx/core -f ALL -p dev_uml -o svg | ||
rm ./packages_dev_uml.svg | ||
mv ./*.svg ./doc/source/user_guide/documentation/ | ||
- name: Commit changes | ||
uses: EndBug/add-and-commit@v4 | ||
with: | ||
author_name: GitHub Action | ||
message: "GitHub action UML generation auto-update" | ||
add: "./doc/source/user_guide/documentation/*" | ||
ref: git branch --show-current |
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.