From 42aa66beb4977364ad42377e9629d51695626962 Mon Sep 17 00:00:00 2001
From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Date: Thu, 30 Apr 2026 16:32:39 +0300
Subject: [PATCH 1/4] Add Language Summit page
---
src/content/pages/language-summit.mdx | 70 +++++++++++++++++++++++++++
src/data/enabledPages.json | 1 +
src/data/links.json | 9 ++++
3 files changed, 80 insertions(+)
create mode 100644 src/content/pages/language-summit.mdx
diff --git a/src/content/pages/language-summit.mdx b/src/content/pages/language-summit.mdx
new file mode 100644
index 000000000..b4e2ebbfb
--- /dev/null
+++ b/src/content/pages/language-summit.mdx
@@ -0,0 +1,70 @@
+---
+title: Language Summit
+subtitle: Discuss the future of the Python language
+---
+
+# Language Summit
+
+## TL;DR
+
+When: Tuesday, 14 July at 9:00am
+Where: ICE Kraków Congress Centre, room TBA
+Co-chairs: Emily Morehouse, Hugo van Kemenade, Lysandros Nikolaou, Łukasz Langa
+Blogger: Seth Michael Larson
+Request to attend: TODO form link (closes Monday, 25th May AoE)
+Submit a topic to present and discuss: TODO form link (closes Monday, 25th May AoE)
+Invitations confirmed by: Monday, 1st June
+
+## What is the Language Summit?
+
+The Python Language Summit is an event for the developers of Python implementations (CPython, PyPy, MicroPython, GraalPython, IronPython, and so on) to share information, discuss our shared problems, and — hopefully — solve them.
+
+These issues might be related to the language itself, the standard library, the development process, the status of Python 3.15 (and plans for 3.16), the documentation, packaging, the website, and so forth. The Summit focuses on discussions and consensus-seeking, more than merely on presentations.
+
+## Who can attend
+
+We welcome Python core team and triage team members, active contributors to CPython and alternative Python implementations, and other community members with a topic to discuss with the core team.
+
+## Who can propose a discussion topic
+
+If you have discussion items; seeking consensus; awaiting community feedback on a PEP; need help with your core work; or have specific questions that need answers from the core team, please submit a proposal. According to feedback, our audience prefers more discussions and shorter talks.
+
+In your proposal, please include the following:
+
+- why is this topic relevant to the core team;
+- what is needed from the core team out of this topic.
+
+## Can I come if I don't sign up?
+
+Sorry, no. This is an invite-only event with limited capacity at the venue. After you sign up, we will let you know before 1st June if you're invited.
+
+## Do I need to sign up if I’m a Python core team member?
+
+Yes, please! We have limited space, and we want to avoid overcrowding. Please register to reserve your space.
+
+## Can I sign up if I’m not a core developer of a Python implementation?
+
+Yes, you can. In the past, we had quite a number of participants who were not core contributors to CPython or other implementations of Python. Among them were maintainers and representatives from BeeWare, CircuitPython, PyCharm, PSF board members, PyO3 and PyPA.
+
+Some of them have since joined the Python core team, so that's a risk you must be willing to accept when signing up.
+
+## Do I need to be registered to EuroPython to attend the Language Summit?
+
+Yes, this is so that you receive a badge and catering during the day. Core team members can apply for a free ticket via the [Guido van Rossum Core Developer Grant](https://www.europython-society.org/core-grant/). If you only want to attend the Language Summit portion and not the rest of the conference, then we can provide you with a voucher that allows you to be registered at EuroPython. This way you'll be in the system. However, we do recommend that you be registered for the full EuroPython. There are amazing talks and keynotes on the schedule that you wouldn't want to miss.
+
+## How can I learn what's happening at the event?
+
+A detailed summary of the event will be published on the [Python Software Foundation blog](https://pyfound.blogspot.com/). Just like last year, the event will be covered by Seth Michael Larson, the Security Developer in Residence at the Python Software Foundation.
+
+## Is this event recorded? Can I watch a live stream?
+
+No, there will be no recording and no live stream available. If you'd like to participate in discussions, please sign up to attend. If you'd like to listen in, please wait for Seth’s blog posts after the Summit.
+
+## I need to ask a private question
+
+Sure thing! You can message the organizers privately [on Discourse](https://discuss.python.org/) and we’ll get you sorted.
+
+## We hope you have a great event!
+
+Your Language Summit cat herding team,
+Emily Morehouse-Valcarcel, Hugo van Kemenade, Lysandros Nikolaou & Łukasz Langa
diff --git a/src/data/enabledPages.json b/src/data/enabledPages.json
index 5580a6e40..f6146f48e 100644
--- a/src/data/enabledPages.json
+++ b/src/data/enabledPages.json
@@ -22,6 +22,7 @@
"/visa",
"/about",
"/faq",
+ "/language-summit",
"/sponsorship/sponsor",
"/sponsorship/information",
"/tickets"
diff --git a/src/data/links.json b/src/data/links.json
index 51cd77cbb..8e6885622 100644
--- a/src/data/links.json
+++ b/src/data/links.json
@@ -17,6 +17,15 @@
}
]
},
+ {
+ "name": "Events",
+ "items": [
+ {
+ "name": "Language Summit",
+ "path": "/language-summit"
+ }
+ ]
+ },
{
"name": "Venue",
"items": [
From fae3600c8e6cacfd8e8e4b4eda775e2769038913 Mon Sep 17 00:00:00 2001
From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Date: Thu, 30 Apr 2026 16:37:10 +0300
Subject: [PATCH 2/4] Update subtitle
---
src/content/pages/language-summit.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/pages/language-summit.mdx b/src/content/pages/language-summit.mdx
index b4e2ebbfb..be034f2d9 100644
--- a/src/content/pages/language-summit.mdx
+++ b/src/content/pages/language-summit.mdx
@@ -1,6 +1,6 @@
---
title: Language Summit
-subtitle: Discuss the future of the Python language
+subtitle: The Python Language Summit is an event for the developers of Python implementations (CPython, PyPy, MicroPython, GraalPython, IronPython, and so on) to share information, discuss our shared problems, and — hopefully — solve them.
---
# Language Summit
From b974499027b14ae349db10732fd5120fa29f25c9 Mon Sep 17 00:00:00 2001
From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Date: Thu, 30 Apr 2026 18:28:44 +0300
Subject: [PATCH 3/4] Link to TODO form, mention core Discord
---
src/content/pages/language-summit.mdx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/content/pages/language-summit.mdx b/src/content/pages/language-summit.mdx
index be034f2d9..eaa32e8e2 100644
--- a/src/content/pages/language-summit.mdx
+++ b/src/content/pages/language-summit.mdx
@@ -27,7 +27,7 @@ We welcome Python core team and triage team members, active contributors to CPyt
## Who can propose a discussion topic
-If you have discussion items; seeking consensus; awaiting community feedback on a PEP; need help with your core work; or have specific questions that need answers from the core team, please submit a proposal. According to feedback, our audience prefers more discussions and shorter talks.
+If you have discussion items; seeking consensus; awaiting community feedback on a PEP; need help with your core work; or have specific questions that need answers from the core team, please [submit a proposal](TODO form link). According to feedback, our audience prefers more discussions and shorter talks.
In your proposal, please include the following:
@@ -62,7 +62,7 @@ No, there will be no recording and no live stream available. If you'd like to pa
## I need to ask a private question
-Sure thing! You can message the organizers privately [on Discourse](https://discuss.python.org/) and we’ll get you sorted.
+Sure thing! You can message the organizers privately [on Discourse](https://discuss.python.org/) or the core team Discord and we’ll get you sorted.
## We hope you have a great event!
From 0105dbeb6e85501c976eb463e30ff832dac2098c Mon Sep 17 00:00:00 2001
From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Date: Sun, 3 May 2026 21:37:17 +0300
Subject: [PATCH 4/4] Add events and langauge summit to footer
---
src/data/links.json | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/src/data/links.json b/src/data/links.json
index 374399f19..724237e25 100644
--- a/src/data/links.json
+++ b/src/data/links.json
@@ -138,6 +138,15 @@
}
]
},
+ {
+ "name": "Events",
+ "items": [
+ {
+ "name": "Language Summit",
+ "path": "/language-summit"
+ }
+ ]
+ },
{
"name": "Sponsorship",
"items": [