Skip to content

Commit 802b827

Browse files
authored
Add schedule for 2025 (#1)
* Add rooms for 2025 * unexclude schedule
1 parent a6cf916 commit 802b827

File tree

2 files changed

+4
-18
lines changed

2 files changed

+4
-18
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
uses: astral-sh/setup-uv@v7
3737

3838
- name: Download data
39-
run: uv run make download EXCLUDE="schedule youtube" > /dev/null 2>&1
39+
run: uv run make download EXCLUDE="youtube" > /dev/null 2>&1
4040
env:
4141
PRETALX_TOKEN: ${{ secrets.PRETALX_TOKEN }}
4242

4343
- name: Transform data
44-
run: uv run make transform EXCLUDE="schedule youtube" > /dev/null 2>&1
44+
run: uv run make transform EXCLUDE="youtube" > /dev/null 2>&1
4545

4646
- name: Create index.html
4747
run: |

src/misc.py

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,8 @@ class Room(Enum):
3636
Rooms at the conference venue, this can change year to year
3737
"""
3838

39-
# Tutorial/workshop rooms
40-
club_a = "Club A"
41-
club_b = "Club B"
42-
club_c = "Club C"
43-
club_d = "Club D"
44-
club_e = "Club E"
45-
club_h = "Club H"
46-
47-
# Conference rooms
48-
forum_hall = "Forum Hall"
49-
terrace_2a = "Terrace 2A"
50-
terrace_2b = "Terrace 2B"
51-
north_hall = "North Hall"
52-
south_hall_2a = "South Hall 2A"
53-
south_hall_2b = "South Hall 2B"
54-
exhibit_hall = "Exhibit Hall"
39+
main_stream = "Main Stream"
40+
other_stream = "Activities & Open Spaces"
5541

5642

5743
class EventType(Enum):

0 commit comments

Comments
 (0)