Skip to content

Commit

Permalink
Merge pull request #4811 from openstates/multiple-session-end-date-fixes
Browse files Browse the repository at this point in the history
Multiple: update session end dates for multi-year sessions
  • Loading branch information
jessemortenson authored Jan 22, 2024
2 parents cf4c984 + 12952b2 commit f514f41
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 17 deletions.
2 changes: 1 addition & 1 deletion scrapers/ak/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class Alaska(State):
"identifier": "33",
"name": "33rd Legislature (2023-2024)",
"start_date": "2023-01-17",
"end_date": "2023-04-19",
"end_date": "2024-05-15",
"active": True,
},
]
Expand Down
5 changes: 2 additions & 3 deletions scrapers/az/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,8 @@ class Arizona(State):
"classification": "primary",
"identifier": "56th-2nd-regular",
"name": "56th Legislature - Second Regular Session",
# TODO: Correct dates
"start_date": "2024-01-09",
"end_date": "2024-06-30",
"start_date": "2024-01-08",
"end_date": "2024-04-20",
"active": True,
},
]
Expand Down
2 changes: 1 addition & 1 deletion scrapers/gu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Guam(State):
"identifier": "37th",
"name": "37th Guam Legislature",
"start_date": "2023-01-01",
"end_date": "2023-12-31",
"end_date": "2024-12-31",
"active": True,
},
]
Expand Down
2 changes: 1 addition & 1 deletion scrapers/ia/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Iowa(State):
"identifier": "2023-2024",
"name": "2023-2024 Regular Session",
"start_date": "2023-01-09",
"end_date": "2023-04-18",
"end_date": "2024-04-16",
"active": True,
},
]
Expand Down
4 changes: 2 additions & 2 deletions scrapers/il/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@ class Illinois(State):
"classification": "primary",
"active": False,
},
# TODO: check dates,
# check senate prez in session_details in bills.py
# https://www.ilga.gov/house/schedules/2024_House_Spring_Session.pdf
{
"name": "103rd Regular Session",
"identifier": "103rd",
"start_date": "2023-01-11",
"end_date": "2023-06-01",
"end_date": "2024-05-24",
"classification": "primary",
"active": True,
},
Expand Down
5 changes: 2 additions & 3 deletions scrapers/in/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,8 @@ class Indiana(State):
"classification": "primary",
"identifier": "2024",
"name": "2024 Regular Session",
# TODO: correct dates
"start_date": "2024-01-10",
"end_date": "2024-04-29",
"start_date": "2024-01-08",
"end_date": "2024-03-14", # https://iga.in.gov/session/2024/deadlines
"active": True,
},
]
Expand Down
2 changes: 1 addition & 1 deletion scrapers/ma/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Massachusetts(State):
"identifier": "193rd",
"name": "193rd Legislature (2023-2024)",
"start_date": "2023-01-04",
"end_date": "2023-12-31",
"end_date": "2024-07-31", # https://malegislature.gov/ClerksOffice/Senate/Deadlines
"active": True,
},
]
Expand Down
2 changes: 1 addition & 1 deletion scrapers/mn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ class Minnesota(State):
"identifier": "2023-2024",
"name": "2023-2024 Regular Session",
"start_date": "2023-01-03",
"end_date": "2023-05-22",
"end_date": "2024-05-20",
"active": True,
},
]
Expand Down
2 changes: 1 addition & 1 deletion scrapers/pa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class Pennsylvania(State):
"identifier": "2023-2024S1",
"name": "2023-2024 Special Session #1",
"start_date": "2023-01-09",
"end_date": "2023-01-13",
"end_date": "2024-11-30",
"active": True,
},
]
Expand Down
2 changes: 1 addition & 1 deletion scrapers/tn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class Tennessee(State):
"identifier": "113",
"name": "113th Regular Session (2023-2024)",
"start_date": "2023-01-10",
"end_date": "2023-04-21",
"end_date": "2024-04-25",
"active": True,
},
{
Expand Down
2 changes: 1 addition & 1 deletion scrapers/vt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Vermont(State):
"identifier": "2023-2024",
"name": "2023-2024 Regular Session",
"start_date": "2023-01-04",
"end_date": "2023-05-15",
"end_date": "2025-05-09",
"active": True,
},
]
Expand Down
2 changes: 1 addition & 1 deletion scrapers/wa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class Washington(State):
"identifier": "2023-2024",
"name": "2023-2024 Regular Session",
"start_date": "2023-01-09",
"end_date": "2023-04-23",
"end_date": "2024-03-07",
"active": True,
},
]
Expand Down

0 comments on commit f514f41

Please sign in to comment.