Lower Python requirement to 3.10 instead of 3.13

This commit is contained in:
2025-01-30 02:44:12 +01:00
parent 9a629ce773
commit 22b90fdcee
3 changed files with 22 additions and 17 deletions

13
noxfile.py Normal file
View File

@ -0,0 +1,13 @@
from __future__ import annotations
import nox # type: ignore[import]
nox.options.default_venv_backend = "uv"
@nox.session(python=["3.10", "3.11", "3.12", "3.13"])
def tests(session: nox.Session) -> None:
"""Run the test suite."""
session.install(".")
session.install("pytest")
session.run("pytest")