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
This commit is contained in:
Alex Gaynor 2024-03-29 10:16:45 -04:00 committed by GitHub
parent cf74624de9
commit 60e3f44dcf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ def check_guide(session: nox.Session):
session, session,
"lychee", "lychee",
"--include-fragments", "--include-fragments",
PYO3_GUIDE_SRC, str(PYO3_GUIDE_SRC),
*remap_args, *remap_args,
*session.posargs, *session.posargs,
) )