From acc3c31d4d15122df513ccb786b752b6a19ee974 Mon Sep 17 00:00:00 2001 From: Pieter Pas Date: Wed, 27 Mar 2024 00:49:26 +0100 Subject: [PATCH] [Test] Skip nanobind on Py3.7 --- noxfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/noxfile.py b/noxfile.py index 5838d65..1760b71 100644 --- a/noxfile.py +++ b/noxfile.py @@ -188,6 +188,9 @@ def component(session: nox.Session): def test_editable( session: nox.Session, name: str, mode: str, dir: Path = Path("examples") ): + ext_suffix = get_ext_suffix(name) + if ext_suffix is None: + return tmpdir = Path(session.create_tmp()).resolve() m = mode.split("+", 1) bh = len(m) > 1 and m[1] == "build_hook"