From 61e945757ae6249e9cdc3367da1a46f25faf98df Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Fri, 17 Oct 2025 10:36:36 -0600 Subject: [PATCH 1/4] Add AGU25 --- agu2025.md | 5 +++++ myst.yml | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 agu2025.md diff --git a/agu2025.md b/agu2025.md new file mode 100644 index 0000000..2c12aac --- /dev/null +++ b/agu2025.md @@ -0,0 +1,5 @@ +--- +title: "AGU 2025" +--- + +[Visit our workshop website](https://agu2025.workshops.geojupyter.org/) diff --git a/myst.yml b/myst.yml index 99b0cc0..e51f188 100644 --- a/myst.yml +++ b/myst.yml @@ -9,10 +9,10 @@ project: exclude: - "_*" - "README.md" - # toc: - # - file: "index.md" - # # TODO: Use URL entries instead, once supported - # # https://github.com/jupyter-book/mystmd/issues/1445 + toc: + - file: "index.md" + - file: "agu2025.md" + - file: "csdms2025.md" site: template: "book-theme" From e2c364ebb3c718b3658d95b37696b7b03fb1e115 Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Fri, 17 Oct 2025 10:38:50 -0600 Subject: [PATCH 2/4] Add link to events website --- agu2025.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/agu2025.md b/agu2025.md index 2c12aac..f36638d 100644 --- a/agu2025.md +++ b/agu2025.md @@ -3,3 +3,5 @@ title: "AGU 2025" --- [Visit our workshop website](https://agu2025.workshops.geojupyter.org/) + +[View more details about our participation in AGU 2025](https://events.geojupyter.org/conferences/2025-agu/) From ccf04427cb109f53549a48fd0cad3632d679aabc Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Fri, 17 Oct 2025 10:52:46 -0600 Subject: [PATCH 3/4] Add workshop title --- agu2025.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/agu2025.md b/agu2025.md index f36638d..c8ceb36 100644 --- a/agu2025.md +++ b/agu2025.md @@ -2,6 +2,10 @@ title: "AGU 2025" --- -[Visit our workshop website](https://agu2025.workshops.geojupyter.org/) +Our workshop at AGU is titled **Open Source Geospatial Workflows in the Cloud: Learn +about Tools and Techniques for Data Access, Analysis, Visualization, Storytelling, and +Sharing in the Python and Jupyter ecosystem**. -[View more details about our participation in AGU 2025](https://events.geojupyter.org/conferences/2025-agu/) +[Visit our workshop website](https://agu2025.workshops.geojupyter.org/) for more details! + +Please also [view more details about our participation in AGU 2025](https://events.geojupyter.org/conferences/2025-agu/). From bd4915d647610919865559e253c7538afb4cfcac Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Fri, 17 Oct 2025 10:53:18 -0600 Subject: [PATCH 4/4] Add pre-commit config --- .pre-commit-config.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..6320bec --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,32 @@ +ci: + autoupdate_schedule: quarterly + autofix_prs: false + +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + # Validate format + - id: check-yaml + - id: check-toml + - id: check-json + # Check for common mistakes + - id: check-added-large-files + - id: check-case-conflict + # - id: check-illegal-windows-names # TODO: Enable in next release + - id: check-merge-conflict + - id: check-executables-have-shebangs + - id: check-shebang-scripts-are-executable + - id: check-symlinks + - id: check-vcs-permalinks + - id: destroyed-symlinks + - id: detect-private-key + - id: end-of-file-fixer + - id: mixed-line-ending + - id: no-commit-to-branch # protects `main` by default + - id: trailing-whitespace + + - repo: https://github.com/codespell-project/codespell + rev: v2.4.1 + hooks: + - id: codespell