Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,6 @@ DEP002 = [
# DEP001: `benchmarks` is the in-repo top-level package imported via the
# pytest pythonpath shim; not a PyPI dependency.
DEP001 = ["benchmarks"]
# DEP003: tomli is the Py 3.10 fallback for stdlib tomllib in
# src/aelfrice/deferred_feedback.py. Drops when Py 3.10 support drops.
DEP003 = ["tomli"]

[dependency-groups]
dev = [
Expand Down
5 changes: 1 addition & 4 deletions src/aelfrice/deferred_feedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,7 @@
from pathlib import Path
from typing import IO, Any, Final

try:
import tomllib
except ImportError: # pragma: no cover - py < 3.11 fallback path
import tomli as tomllib # type: ignore[no-redef]
import tomllib

from aelfrice.store import MemoryStore

Expand Down
Loading