Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def dist(session: nox.Session, backend: str, vcs: bool) -> None:
# Check for LICENSE in SDist
with tarfile.open(sdist) as tf:
names = tf.getnames()
if backend not in {"mesonpy", "poetry", "maturin"}:
if backend not in {"poetry", "maturin"}:
(metadata_path,) = (
n for n in names if n.endswith("PKG-INFO") and "egg-info" not in n
)
Expand Down
Loading