From f4d9323f7bd56a3ebefc73bc6cef5e143fd9e9a7 Mon Sep 17 00:00:00 2001 From: NewAgeAirbender <34139325+NewAgeAirbender@users.noreply.github.com> Date: Fri, 29 Mar 2024 13:29:00 -0500 Subject: [PATCH] 6.18.5: update changelog & version --- CHANGELOG.md | 5 +++++ openstates/cli/update.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23b270faf..cdca102c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 6.18.5 - March 29, 2024 + +* other_name in committee matching +* swap getargspec for getfullargspec on Update + ## 6.18.4 - March 25, 2024 * Rollback on committee matching diff --git a/openstates/cli/update.py b/openstates/cli/update.py index f72139f11..21ffc9cd9 100644 --- a/openstates/cli/update.py +++ b/openstates/cli/update.py @@ -98,7 +98,7 @@ def do_scrape( for scraper_name, scrape_args in scrapers.items(): ScraperCls = juris.scrapers[scraper_name] if ( - "session" in inspect.getargspec(ScraperCls.scrape).args + "session" in inspect.getfullargspec(ScraperCls.scrape).args and "session" not in scrape_args ): logger.warning( diff --git a/pyproject.toml b/pyproject.toml index 67f1ec3ab..e0b348e59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openstates" -version = "6.18.4" +version = "6.18.5" description = "core infrastructure for the openstates project" authors = ["James Turk "] license = "MIT"