Breaking: Drop support for Python 3.10 (#12234)

This commit is contained in:
Trenton H
2026-03-04 15:03:33 -08:00
committed by GitHub
parent a9cb89c633
commit 1e21bcd26e
17 changed files with 108 additions and 772 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
from __future__ import annotations
from dataclasses import dataclass
from enum import Enum
from enum import StrEnum
from typing import TYPE_CHECKING
from typing import Any
@@ -11,7 +11,7 @@ if TYPE_CHECKING:
from django.http import HttpRequest
class VersionResolutionError(str, Enum):
class VersionResolutionError(StrEnum):
INVALID = "invalid"
NOT_FOUND = "not_found"