Skip to content

Commit

Permalink
fixed inspection method
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Avrahami committed May 9, 2024
1 parent 102ad7d commit 0be7381
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# poetry-stale-dependencies changelog
## 0.1.2
### Fixed
* fixed inspection method name

## 0.1.1
### Fixed
* fixed release workflow
Expand Down
2 changes: 1 addition & 1 deletion poetry_stale_dependencies/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def handle(self) -> int:
lock = Lock()
with Client() as client:
with ThreadPoolExecutor(n_workers) as pool:
inspect_results = pool.map(lambda spec: spec.inspect(client, self, lock), inspec_specs)
inspect_results = pool.map(lambda spec: spec.inspect_is_stale(client, self, lock), inspec_specs)

for result in inspect_results:
any_stale |= result
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 = "poetry-stale-dependencies"
version = "0.1.1"
version = "0.1.2"
description = ""
authors = ["Biocatch LTD <[email protected]>"]

Expand Down

0 comments on commit 0be7381

Please sign in to comment.