Lower Python requirment to 3.9

This commit is contained in:
2025-04-16 22:33:01 +02:00
parent 83dc6440d8
commit cb87f4e2d7
4 changed files with 23 additions and 8 deletions

14
noxfile.py Normal file
View File

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