-
Notifications
You must be signed in to change notification settings - Fork 22
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 #212 from nasa/release/v1.4
Release/v1.4
- Loading branch information
Showing
61 changed files
with
984 additions
and
764 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Print PR Message - Non Release | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'dev' | ||
types: [opened] | ||
|
||
jobs: | ||
benchmark_branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Auto Comment | ||
uses: wow-actions/auto-comment@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
pullRequestOpened: > | ||
Thank you for opening this PR. Each PR into dev requires a code review. For the code review, look at the following: | ||
- [ ] Reviewer should look for bugs, efficiency, readability, testing, and coverage in examples (if relevant). | ||
- [ ] Ensure that each PR adding a new feature should include a test verifying that feature. | ||
- [ ] All tests must be passing. | ||
- [ ] All errors from static analysis must be resolved. | ||
- [ ] Review the test coverage reports (if there is a change) - will be added as comment on PR if there is a change | ||
- [ ] Review the software benchmarking results (if there is a change) - will be added as comment on PR | ||
- [ ] Any added dependencies are included in requirements.txt, setup.py, and dev_guide.rst (this document) | ||
- [ ] All warnings from static analysis must be reviewed and resolved - if deemed appropriate. |
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,56 @@ | ||
name: Print PR Message - Release | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'release/**' | ||
types: [opened] | ||
|
||
jobs: | ||
benchmark_branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Auto Comment | ||
uses: wow-actions/auto-comment@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
pullRequestOpened: > | ||
Thank you for opening this PR. Since this is a release branch, the PR must complete the release checklist, below: | ||
- [ ] Check that each new feature has corresponding tests | ||
- [ ] Confirm all dependencies are in the following: requirements.txt, setup.py, the bottom of dev_guide.rst | ||
- [ ] Confirm that all issues associated with the release have been closed (i.e., requirements have been met) or assigned to another release | ||
- [ ] Run unit tests `python -m tests` | ||
- [ ] If present, run manual tests `python -m tests.test_manual` | ||
- [ ] Review the template(s) | ||
- [ ] Review static-analysis/linter results | ||
- [ ] Review the tutorial | ||
- [ ] Run and review the examples | ||
- [ ] Check that all examples are tested | ||
- [ ] Check new files in PR for any accidentally added | ||
- [ ] Check documents | ||
- [ ] Check that all desired examples are in docs | ||
- [ ] General review: see if any updates are required | ||
- [ ] Rebuild sphinx documents: `sphinx-build sphinx_config/ docs/` | ||
- [ ] Write release notes | ||
- [ ] Update version number in src/\*/__init__.py and setup.py | ||
- [ ] For releases adding new features- ensure that NASA release process has been followed. | ||
- [ ] Confirm that on GitHub Releases page, the next release has been started and that a schedule is present including at least Release Date, Release Review Date, and Release Branch Opening Date.` |
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,3 +1,3 @@ | ||
# Copyright © 2021 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved. | ||
|
||
__all__ = ['basic_example', 'benchmarking_example', 'eol_event', 'horizon', 'kalman_filter', 'utpredictor', 'new_state_estimator_example', 'measurement_eqn_example', 'playback', 'predict_specific_event', 'thrown_object_example'] | ||
__all__ = ['basic_example', 'basic_example_battery', 'benchmarking_example', 'eol_event', 'horizon', 'kalman_filter', 'new_state_estimator_example', 'measurement_eqn_example', 'playback', 'predict_specific_event'] |
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.