Skip to content

Commit

Permalink
Expect bracket modifiers to pypi packages (#86)
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Titsworth <[email protected]>
  • Loading branch information
Tyler Titsworth authored Jun 3, 2024
1 parent 80e189e commit 27b075a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/scripts/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_dependency_string(dep_type):
for file in requirements_file:
with open(file, "r", encoding="utf-8") as f:
py_reqs = re.sub(r"\n-(.*)", "", f.read())
py_reqs = re.sub(r"(.*?)(\W=)(.*)", r"\1 \3", py_reqs)
py_reqs = re.sub(r"(.*]?)(\W=)(.*)", r"\1 \3", py_reqs)
py_reqs = re.sub(r"#(.*)", "", py_reqs)
py_deps = py_deps + "\n".join(py_reqs.split("\n"))

Expand Down

0 comments on commit 27b075a

Please sign in to comment.