]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
use the nox venv backend
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 28 Oct 2025 18:06:14 +0000 (14:06 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 28 Oct 2025 18:06:14 +0000 (14:06 -0400)
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

index a5afe3167392c19365636e8b2a7683ac8dade8da..a8b7cffcb5dd7e9707226d41ef1b67a93d5b0f5f 100644 (file)
@@ -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, ".")