Skip to content

Commit

Permalink
Update check.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen authored Feb 14, 2025
1 parent 49bb62e commit 5850d4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci_support/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
for el in sub_lst:
lst.append(el)

data["project"]["dependencies"] += list(set(lst))
data["project"]["dependencies"] += [el for el in set(lst) if not el.startswith("pwtools")]

with open("pyproject.toml", "w") as f:
f.writelines(tomlkit.dumps(data))
f.writelines(tomlkit.dumps(data))

0 comments on commit 5850d4a

Please sign in to comment.