From 5e62ea65167c4d6d710cb475cf506284e9335cfb Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 28 Oct 2025 14:06:14 -0400 Subject: [PATCH] use the nox venv backend This backend seems to run from the start against the resolved interpreter, which we want. The virtualenv option, which is the default, has the problem indicated at [1]. [1] https://github.com/wntrblm/nox/issues/1021 Change-Id: Ic10317c603e0556676b16ad314fe6e79ba9d0476 --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index a5afe31673..a8b7cffcb5 100644 --- a/noxfile.py +++ b/noxfile.py @@ -11,7 +11,7 @@ from typing import Set import nox nox.needs_version = ">=2025.10.16" - +nox.options.default_venv_backend = "venv" if True: sys.path.insert(0, ".") -- 2.47.3