From 0bda9b4e18ab782c682b93956764a0648ca2aa4d Mon Sep 17 00:00:00 2001 From: egeakman Date: Tue, 4 Nov 2025 14:12:39 -0800 Subject: [PATCH 1/2] Add rooms for 2025 --- src/misc.py | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/src/misc.py b/src/misc.py index fa64cf5..3085130 100644 --- a/src/misc.py +++ b/src/misc.py @@ -36,22 +36,8 @@ class Room(Enum): Rooms at the conference venue, this can change year to year """ - # Tutorial/workshop rooms - club_a = "Club A" - club_b = "Club B" - club_c = "Club C" - club_d = "Club D" - club_e = "Club E" - club_h = "Club H" - - # Conference rooms - forum_hall = "Forum Hall" - terrace_2a = "Terrace 2A" - terrace_2b = "Terrace 2B" - north_hall = "North Hall" - south_hall_2a = "South Hall 2A" - south_hall_2b = "South Hall 2B" - exhibit_hall = "Exhibit Hall" + main_stream = "Main Stream" + other_stream = "Activities & Open Spaces" class EventType(Enum): From ee5521068b1429f9ecc1126614c4d5da8ee402c4 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 10 Nov 2025 15:08:02 -0500 Subject: [PATCH 2/2] unexclude schedule --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 713352b..2120ebf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,12 +36,12 @@ jobs: uses: astral-sh/setup-uv@v7 - name: Download data - run: uv run make download EXCLUDE="schedule youtube" > /dev/null 2>&1 + run: uv run make download EXCLUDE="youtube" > /dev/null 2>&1 env: PRETALX_TOKEN: ${{ secrets.PRETALX_TOKEN }} - name: Transform data - run: uv run make transform EXCLUDE="schedule youtube" > /dev/null 2>&1 + run: uv run make transform EXCLUDE="youtube" > /dev/null 2>&1 - name: Create index.html run: |