-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 6bf698a3-dc63-11ee-a878-aac83d19daa0
- Loading branch information
Showing
9 changed files
with
1,265 additions
and
33 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,93 @@ | ||
on: pull_request | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- uses: pre-commit/[email protected] | ||
|
||
build-book: | ||
runs-on: ubuntu-latest | ||
needs: pre-commit | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- name: Get changed notebooks | ||
id: changed-files | ||
uses: tj-actions/changed-files@v44 | ||
with: | ||
files: | | ||
**.ipynb | ||
- name: Build permalinks | ||
id: build-permalinks | ||
env: | ||
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} | ||
run: |- | ||
permalinks="<ul>" | ||
for fullfile in ${ALL_CHANGED_FILES}; do | ||
fullfile="${fullfile//\\&/&}" | ||
commit=$(git rev-list -1 HEAD "$fullfile") | ||
suffix="${fullfile//&/%26}" | ||
url=${{ github.server_url }}/${{ github.repository }}/blob/$commit/$suffix | ||
permalinks+="<li><a href=\"$url\">$url</a></li>" | ||
done | ||
permalinks+="</ul>" | ||
echo "permalinks=$permalinks" >>"$GITHUB_OUTPUT" | ||
- name: Comment PR with permalinks | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
message: | | ||
**Permalinks:** | ||
${{ steps.build-permalinks.outputs.permalinks }} | ||
comment_tag: permalinks | ||
- name: Checkout book repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: ecmwf-projects/c3s_eqc_book_main | ||
path: book | ||
- name: Install jupyter-book | ||
run: | | ||
python -m pip install jupyter-book | ||
- name: Build pages | ||
env: | ||
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} | ||
run: |- | ||
mkdir book_preview || exit | ||
cd book/c3s_eqc_quality_assessments || exit | ||
for fullfile in ${ALL_CHANGED_FILES}; do | ||
mkdir tmp || exit | ||
fullfile="${fullfile//\\&/&}" | ||
filename=$(basename -- "$fullfile") | ||
prefix="${filename%.*}" | ||
cp ../../"$fullfile" tmp/"$filename" || exit | ||
python ../../scripts/convert-to-book-format.py tmp/"$filename" || exit | ||
jupyter-book build tmp/"$filename" || exit | ||
mv _build/_page/tmp-"$prefix"/html ../../book_preview/"$prefix" || exit | ||
rm -fr _build | ||
rm -fr tmp | ||
done | ||
- uses: actions/upload-artifact@v4 | ||
id: upload-artifact | ||
with: | ||
name: book-preview | ||
path: book_preview/* | ||
- name: Comment PR with book preview url | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
message: | | ||
**Jupyter Book Preview:** ${{ steps.upload-artifact.outputs.artifact-url }} | ||
comment_tag: artifact-url |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
__MACOSX/ | ||
*.zip | ||
*.html | ||
*.png |
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
1,089 changes: 1,089 additions & 0 deletions
1,089
Seasonal_Forecasts/seasonal_seasonal-monthly-single-levels_forecast-skill_q02.ipynb
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Same as Black. | ||
|
||
indent-width = 4 | ||
line-length = 88 | ||
|
||
[lint] | ||
ignore = [ | ||
# pydocstyle: Missing Docstrings | ||
"D1" | ||
] | ||
select = [ | ||
# pyflakes | ||
"F", | ||
# pycodestyle | ||
"E", | ||
"W", | ||
# isort | ||
"I", | ||
# pydocstyle | ||
"D" | ||
] | ||
|
||
[lint.pycodestyle] | ||
max-line-length = 110 | ||
|
||
[lint.pydocstyle] | ||
convention = "numpy" |
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,37 @@ | ||
import argparse | ||
import base64 | ||
from pathlib import Path | ||
|
||
import nbformat | ||
import nbformat.v4 | ||
|
||
LOGO_PATH = "../LogoLine_horizon_C3S.png" | ||
|
||
|
||
def convert_notebook(path: Path) -> None: | ||
notebook = nbformat.read(path, nbformat.NO_CONVERT) | ||
|
||
# Add logo | ||
notebook.cells.insert(0, nbformat.v4.new_markdown_cell(f"![logo]({LOGO_PATH})")) | ||
|
||
# Decode figure | ||
for cell in notebook.cells: | ||
attachments = cell.pop("attachments", {}) | ||
for name, data in attachments.items(): | ||
cell["source"] = cell["source"].replace(f"(attachment:{name})", f"({name})") | ||
for encoded in data.values(): | ||
(path.parent / name).write_bytes(base64.b64decode(encoded)) | ||
|
||
nbformat.write(notebook, path) | ||
|
||
|
||
def main(paths: list[Path]) -> None: | ||
for path in paths: | ||
convert_notebook(path) | ||
|
||
|
||
if __name__ == "__main__": | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument("paths", action="store", type=Path, nargs="*") | ||
args = parser.parse_args() | ||
main(args.paths) |
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