add new features and fix bugs

This commit is contained in:
Christoph Brandau
2026-06-18 17:31:51 +02:00
parent 41f331d4c4
commit 3ad3847045
14 changed files with 988 additions and 171 deletions
+4 -1
View File
@@ -12,6 +12,10 @@ from typing import List
import nox # pylint: disable=import-error
# Use uv to create session environments. The uv-managed standalone Python builds
# don't ship pythonw.exe, which makes the default virtualenv backend fail on Windows.
nox.options.default_venv_backend = "uv"
def _read_dependencies() -> List[str]:
"""Read project dependencies from pyproject.toml."""
@@ -28,7 +32,6 @@ def _install_bundle(session: nox.Session) -> None:
"--target",
"./libs",
"--no-cache-dir",
"py",
"--upgrade",
*deps,
external=True,