Skip to content

Commit

Permalink
6.18.5: update changelog & version
Browse files Browse the repository at this point in the history
  • Loading branch information
NewAgeAirbender committed Mar 29, 2024
1 parent 9354ec7 commit f4d9323
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion openstates/cli/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit f4d9323

Please sign in to comment.