-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/inspection_tool
- Loading branch information
Showing
16 changed files
with
347 additions
and
173 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,15 @@ | ||
name: Check Changelog Update on PR | ||
on: | ||
pull_request: | ||
types: [assigned, opened, synchronize, reopened, labeled, unlabeled] | ||
branches: | ||
- main | ||
- develop | ||
jobs: | ||
Check-Changelog: | ||
name: Check Changelog Action | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: tarides/changelog-check-action@v2 | ||
with: | ||
changelog: CHANGELOG.md |
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 |
---|---|---|
|
@@ -21,6 +21,8 @@ jobs: | |
with: | ||
python-version: 3.x | ||
- uses: pre-commit/[email protected] | ||
env: | ||
SKIP: no-commit-to-branch | ||
|
||
checks: | ||
strategy: | ||
|
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,22 @@ | ||
name: Read the Docs PR Preview | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
# Execute this action only on PRs that touch | ||
# documentation files. | ||
paths: | ||
- "docs/**" | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
documentation-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: readthedocs/actions/preview@v1 | ||
with: | ||
project-slug: "anemoi-graphs" |
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,53 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
Please add your functional changes to the appropriate section in the PR. | ||
Keep it human-readable, your future self will thank you! | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
- HEALPixNodes - nodebuilder based on Hierarchical Equal Area isoLatitude Pixelation of a sphere | ||
### Changed | ||
|
||
### Removed | ||
|
||
## [0.2.1] - Anemoi-graph Release, bug fix release | ||
|
||
### Added | ||
|
||
### Changed | ||
- Fix The 'save_path' argument of the GraphCreator class is optional, allowing users to create graphs without saving them. | ||
|
||
### Removed | ||
|
||
## [0.2.0] - Anemoi-graph Release, Icosahedral graph building | ||
|
||
### Added | ||
- New node builders by iteratively refining an icosahedron: TriNodes, HexNodes. | ||
- New edge builders for building multi-scale connections. | ||
- Added Changelog | ||
|
||
### Changed | ||
|
||
### Removed | ||
|
||
## [0.1.0] - Initial Release, Global graph building | ||
|
||
### Added | ||
- Documentation | ||
- Initial implementation for global graph building on the fly from Zarr and NPZ datasets | ||
|
||
### Changed | ||
|
||
### Removed | ||
|
||
<!-- Add Git Diffs for Links above --> | ||
[unreleased]: https://github.com/ecmwf/anemoi-graphs/compare/0.2.1...HEAD | ||
[0.2.1]: https://github.com/ecmwf/anemoi-graphs/compare/0.2.0...0.2.1 | ||
[0.2.0]: https://github.com/ecmwf/anemoi-graphs/compare/0.1.0...0.2.0 | ||
[0.1.0]: https://github.com/ecmwf/anemoi-graphs/releases/tag/0.1.0 |
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
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.