Skip to content

Commit

Permalink
Merge pull request #17 from rosalindfranklininstitute/modify-setup
Browse files Browse the repository at this point in the history
modify setup.py to remove filename.as_posix causing bug
  • Loading branch information
dylanmcreynolds authored May 13, 2022
2 parents 0ff79d7 + 3282dbc commit 75d8f5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def read_requirements_from_here(here: Path, filename: str = None) -> list:
assert filename is not None, "filename as string must be provided"
assert here.with_name(
filename
).exists(), f"requirements filename {filename.as_posix()} does not exist"
).exists(), f"requirements filename {filename} does not exist"
with open(here.with_name(filename)) as requirements_file:
# Parse requirements.txt, ignoring any commented-out lines.
requirements = [
Expand Down

0 comments on commit 75d8f5b

Please sign in to comment.