Skip to content

Commit 5a34be2

Browse files
committed
add ep2026
1 parent 47036eb commit 5a34be2

File tree

6 files changed

+279
-211
lines changed

6 files changed

+279
-211
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- ep2024
77
- ep2025
8+
- ep2026
89
schedule:
910
- cron: "*/10 * * * *" # every 10 minutes
1011
workflow_dispatch:
@@ -22,7 +23,7 @@ jobs:
2223
- name: Set up Python 3
2324
uses: actions/setup-python@v6
2425
with:
25-
python-version: '3.13'
26+
python-version: '3.14'
2627

2728
- name: Setup uv
2829
uses: astral-sh/setup-uv@v7

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Variables for the project
22
# =========================
3-
CONFERENCE ?= ep2025
3+
CONFERENCE ?= ep2026
44
DATA_DIR ?= ./data/public/$(CONFERENCE)/
55

66
# Variables for remote host

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "programapi"
3-
version = "2025.4.5"
3+
version = "2026.4.17"
44
description = "Programme API for EuroPython"
55
readme = "README.md"
66
requires-python = ">=3.12"

src/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66

77
class Config:
8-
event = "europython-2025"
9-
event_dir_name = "ep2025"
8+
event = "europython-2026"
9+
event_dir_name = "ep2026"
1010
api_version = "v1"
1111

1212
project_root = Path(__file__).resolve().parents[1]

src/misc.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ class Room(Enum):
3232
Rooms at the conference venue, this can change year to year
3333
"""
3434

35+
## to be updated when the 2026 schedule is out
36+
3537
# Tutorial/workshop rooms
3638
club_a = "Club A"
3739
club_b = "Club B"

0 commit comments

Comments
 (0)