Skip to content

Commit 7744241

Browse files
authored
Fix error introduced in #364. (#369)
1 parent f7cc440 commit 7744241

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

docs/source/changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
1818
- {pull}`365` reworks the panel on the index page with sphinx-design.
1919
- {pull}`366` adds light and dark logos and fixes some warnings when building the
2020
documentation.
21+
- {pull}`368` fixes an error in `update_plugin_list.py` introduced by {pull}`364`.
2122

2223
## 0.3.1 - 2023-12-25
2324

scripts/update_plugin_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def _iter_plugins() -> Generator[dict[str, str], None, None]: # noqa: C901
119119

120120
if info["requires_dist"]:
121121
for requirement in info["requires_dist"]:
122-
if re.match(r"pytest(?![-.\w])", requirement):
122+
if re.match(r"pytask(?![-.\w])", requirement):
123123
requires = requirement
124124
break
125125

0 commit comments

Comments
 (0)