From 86cc11d11a809eedb0e05019818cafaf65736dd7 Mon Sep 17 00:00:00 2001 From: Jesse Mortenson <jessemortenson@gmail.com> Date: Mon, 6 Jan 2025 15:53:24 -0600 Subject: [PATCH] WI: add and activate 2025 session --- scrapers/wi/__init__.py | 11 ++++++++++- scrapers/wi/common.py | 1 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/scrapers/wi/__init__.py b/scrapers/wi/__init__.py index 23f2501e0e..94b71ee41a 100644 --- a/scrapers/wi/__init__.py +++ b/scrapers/wi/__init__.py @@ -171,7 +171,7 @@ class Wisconsin(State): "name": "2023-2024 Regular Session", "start_date": "2023-01-03", "end_date": "2024-05-25", - "active": True, + "active": False, }, { "_scraped_name": "September 2023 Special Session", @@ -182,6 +182,15 @@ class Wisconsin(State): "end_date": "2023-09-22", "active": False, }, + { + "_scraped_name": "2025 Regular Session", + "classification": "primary", + "identifier": "2025", + "name": "2025-2026 Regular Session", + "start_date": "2025-01-06", + "end_date": "2026-05-25", + "active": True, + }, ] ignored_scraped_sessions = [ "January 2020 Special Session", diff --git a/scrapers/wi/common.py b/scrapers/wi/common.py index 5a7478d3c6..66b37ebffa 100644 --- a/scrapers/wi/common.py +++ b/scrapers/wi/common.py @@ -20,6 +20,7 @@ "2021S1": "2021-2022", "2023": "2023-2024", "2023S1": "2023-2024", + "2025": "2025-2026", }