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: | 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):