Merge branch 'main' into fix/accessory-key-drift

This commit is contained in:
Mike Almeloo
2025-09-08 00:51:18 +02:00
committed by GitHub
5 changed files with 1331 additions and 1256 deletions

View File

@@ -40,7 +40,7 @@ jobs:
python-version: ${{ matrix.py-version }}
- name: Run unit tests
run: uv run pytest
run: uv run --group test --python ${{ matrix.py-version }} pytest
results:
runs-on: ubuntu-latest

View File

@@ -7,7 +7,6 @@ from __future__ import annotations
import argparse
import logging
import sys
from pathlib import Path
from _login import get_account_sync

View File

@@ -6,7 +6,9 @@ import asyncio
import logging
from abc import ABC, abstractmethod
from collections.abc import Mapping
from typing import TYPE_CHECKING, Generic, Self, TypeVar
from typing import TYPE_CHECKING, Generic, TypeVar
from typing_extensions import Self
if TYPE_CHECKING:
from pathlib import Path

View File

@@ -16,9 +16,6 @@ dependencies = [
"anisette>=1.2.1,<2.0.0",
]
[tool.uv.dependency-groups.docs]
requires-python = ">=3.11"
[dependency-groups]
dev = [
"pre-commit>=4.0.0,<5.0.0",
@@ -30,8 +27,8 @@ dev = [
test = ["pytest>=8.3.2,<9.0.0"]
docs = [
"furo>=2025.7.19",
"myst-parser>=4.0.1",
"sphinx>=8.2.3,<8.3.0",
"myst-parser>=4.0.1; python_full_version >= '3.10'",
"sphinx>=8.2.3,<8.3.0; python_full_version >= '3.11'",
"sphinx-autoapi==3.6.0",
"sphinx-book-theme>=1.1.4",
]

2573
uv.lock generated

File diff suppressed because it is too large Load Diff