From 60e3f44dcf0396d43ebd3cea60aba483db72cc81 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 29 Mar 2024 10:16:45 -0400 Subject: [PATCH] Ensure all arguments to _run are strings (#4013) Otherwise you get errors like https://github.com/PyO3/pyo3/actions/runs/8480723060/job/23236947935?pr=4012 --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 3ee76da5..3d82c8d3 100644 --- a/noxfile.py +++ b/noxfile.py @@ -406,7 +406,7 @@ def check_guide(session: nox.Session): session, "lychee", "--include-fragments", - PYO3_GUIDE_SRC, + str(PYO3_GUIDE_SRC), *remap_args, *session.posargs, )