mirror of
https://github.com/malmeloo/FindMy.py.git
synced 2026-04-17 21:53:57 +02:00
Merge branch 'main' into fix/accessory-key-drift
This commit is contained in:
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -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
|
||||
|
||||
@@ -7,7 +7,6 @@ from __future__ import annotations
|
||||
import argparse
|
||||
import logging
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
from _login import get_account_sync
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user