Skip to content

Commit

Permalink
[Test] Skip nanobind on Py3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Mar 26, 2024
1 parent 34b0cb7 commit acc3c31
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit acc3c31

Please sign in to comment.