From 9df5ffbfa464ff037282f2dbfb8a7cbaa47492f1 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Thu, 2 Jul 2026 12:36:13 -0700 Subject: [PATCH 1/4] Fix POSE award link --- content/summits/developer/2025/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/summits/developer/2025/_index.md b/content/summits/developer/2025/_index.md index 8ceadcde..cc8cea58 100644 --- a/content/summits/developer/2025/_index.md +++ b/content/summits/developer/2025/_index.md @@ -22,7 +22,7 @@ We would like to thank the following institutions and projects for sponsoring th **Presenting sponsor** _Contributions to the statistical Python ecosystem at this year's Summit are funded by the NSF POSE Phase 1 award: -[An open-source ecosystem for statistical Python](https://nsf.elsevierpure.com/en/projects/pose-phase-1-an-open-source-ecosystem-for-statistical-python)_ +[An open-source ecosystem for statistical Python](https://nsf.elsevierpure.com/en/projects/pose-phase-1-an-open-source-ecosystem-for-statistical-python-2)_

 

From a9c81b18b5d00f8562e2bb9ca12b6abac93ac311 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Thu, 2 Jul 2026 12:52:00 -0700 Subject: [PATCH 2/4] Bump specs --- content/specs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/specs b/content/specs index 683b6622..fd2bca91 160000 --- a/content/specs +++ b/content/specs @@ -1 +1 @@ -Subproject commit 683b6622bfb4916fefe490eb0db41ff1fc16c96c +Subproject commit fd2bca916b5948643a65633c11840047b6c3917f From bbe7785035cccfc56c8776a251602d4d93db8f21 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Thu, 2 Jul 2026 21:50:02 -0700 Subject: [PATCH 3/4] Ignore summit pages in link checking --- .github/lychee.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/lychee.toml b/.github/lychee.toml index ec309e7a..bec502dc 100644 --- a/.github/lychee.toml +++ b/.github/lychee.toml @@ -18,9 +18,10 @@ exclude = [ ] # Exclude file paths matching these patterns (treated as regex) -# Meeting notes are historical and not actively maintained +# Meeting notes and summits are historical and not actively maintained exclude_path = [ '/meeting\d+/', + '/summits/.*', ] # Accept these HTTP status codes as successful From 9021c53c3a7fb22dd63460f00f9276e1db70e3ac Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Thu, 2 Jul 2026 21:51:56 -0700 Subject: [PATCH 4/4] Avoid link checking unpublished core projects --- .github/lychee.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/lychee.toml b/.github/lychee.toml index bec502dc..22da7e07 100644 --- a/.github/lychee.toml +++ b/.github/lychee.toml @@ -22,6 +22,10 @@ exclude = [ exclude_path = [ '/meeting\d+/', '/summits/.*', + # Avoid chicken and egg problem, where project is added, index.xml generates link to + # https://scientific-python.org/specs/core-projects/project/, but that folder has not + # yet been published. + '/specs/core-projects/index.xml' ] # Accept these HTTP status codes as successful