Skip to content

Commit d2cfeb1

Browse files
authored
tests: maturin now should pass metadata check (#625)
Signed-off-by: Henry Schreiner <[email protected]>
1 parent a85c2dc commit d2cfeb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def dist(session: nox.Session, backend: str, vcs: bool) -> None:
283283
# Check for LICENSE in SDist
284284
with tarfile.open(sdist) as tf:
285285
names = tf.getnames()
286-
if backend not in {"poetry", "maturin"}:
286+
if backend != "poetry":
287287
(metadata_path,) = (
288288
n for n in names if n.endswith("PKG-INFO") and "egg-info" not in n
289289
)

0 commit comments

Comments
 (0)