Skip to content

Commit

Permalink
Also split on "("
Browse files Browse the repository at this point in the history
  • Loading branch information
hugobuddel committed Apr 5, 2024
1 parent 15805d8 commit 4bb1101
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scopesim/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,7 @@ def _get_required_packages():
continue

name = req.split(">", maxsplit=1)[0].strip()
name = name.split("(", maxsplit=1)[0].strip()
yield name


Expand Down

0 comments on commit 4bb1101

Please sign in to comment.