Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
18 changes: 2 additions & 16 deletions src/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down