Skip to content

Commit

Permalink
Remove false positive matches
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards committed Nov 22, 2024
1 parent 9201998 commit 676c6a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion etc/make-requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ def get_versions(pkg_name, py_version):
text=True,
check=True,
)
return set(re.findall(version_pattern, result.stdout))
available_versions = result.stdout.split("\n")[1]
return set(re.findall(version_pattern, available_versions))


pkgs = []
Expand Down

0 comments on commit 676c6a0

Please sign in to comment.