943acbc573
Durcit la convention de nommage des projets (dérive constatée : 'Sliding Automation', 'code_versioning'... au lieu des formes canoniques). - trilium_api.py : projets_canoniques() lit le référentiel = valeurs du label projet sur les notes de type=projet (source unique, pas de constante en dur). Note-projet CodeVersioning créée (manquait). - mcp_server.py : _valider_projet() branché dans les 6 tools de création (add_decision/history/backlog, new_conversation, create_entite, add_skill). Refuse un projet non canonique (suggestion si faute) ou inconnu (renvoi au processus de création de projet). Ne verrouille pas si référentiel illisible. - lint_audit.py : VAL-nommage aligné sur le référentiel (attrape casse, espace ET snake_case ; l'ancien 'contient un espace' ratait code_versioning). - Données : 79 notes ré-étiquetées vers les 3 formes canoniques. Quality by design : l'erreur de nommage devient impossible à l'écriture, le Lint n'est plus que le filet de sécurité.
123 lines
4.7 KiB
Python
123 lines
4.7 KiB
Python
"""Pydantic-specific warnings."""
|
|
|
|
from __future__ import annotations as _annotations
|
|
|
|
from .version import version_short
|
|
|
|
__all__ = (
|
|
'PydanticDeprecatedSince20',
|
|
'PydanticDeprecatedSince26',
|
|
'PydanticDeprecatedSince29',
|
|
'PydanticDeprecatedSince210',
|
|
'PydanticDeprecatedSince211',
|
|
'PydanticDeprecatedSince212',
|
|
'PydanticDeprecationWarning',
|
|
'PydanticExperimentalWarning',
|
|
'ArbitraryTypeWarning',
|
|
'UnsupportedFieldAttributeWarning',
|
|
'TypedDictExtraConfigWarning',
|
|
)
|
|
|
|
|
|
class PydanticDeprecationWarning(DeprecationWarning):
|
|
"""A Pydantic specific deprecation warning.
|
|
|
|
This warning is raised when using deprecated functionality in Pydantic. It provides information on when the
|
|
deprecation was introduced and the expected version in which the corresponding functionality will be removed.
|
|
|
|
Attributes:
|
|
message: Description of the warning.
|
|
since: Pydantic version in what the deprecation was introduced.
|
|
expected_removal: Pydantic version in what the corresponding functionality expected to be removed.
|
|
"""
|
|
|
|
message: str
|
|
since: tuple[int, int]
|
|
expected_removal: tuple[int, int]
|
|
|
|
def __init__(
|
|
self, message: str, *args: object, since: tuple[int, int], expected_removal: tuple[int, int] | None = None
|
|
) -> None:
|
|
super().__init__(message, *args)
|
|
self.message = message.rstrip('.')
|
|
self.since = since
|
|
self.expected_removal = expected_removal if expected_removal is not None else (since[0] + 1, 0)
|
|
|
|
def __str__(self) -> str:
|
|
message = (
|
|
f'{self.message}. Deprecated in Pydantic V{self.since[0]}.{self.since[1]}'
|
|
f' to be removed in V{self.expected_removal[0]}.{self.expected_removal[1]}.'
|
|
)
|
|
if self.since == (2, 0):
|
|
message += f' See Pydantic V2 Migration Guide at https://errors.pydantic.dev/{version_short()}/migration/'
|
|
return message
|
|
|
|
|
|
class PydanticDeprecatedSince20(PydanticDeprecationWarning):
|
|
"""A specific `PydanticDeprecationWarning` subclass defining functionality deprecated since Pydantic 2.0."""
|
|
|
|
def __init__(self, message: str, *args: object) -> None:
|
|
super().__init__(message, *args, since=(2, 0), expected_removal=(3, 0))
|
|
|
|
|
|
class PydanticDeprecatedSince26(PydanticDeprecationWarning): # pragma: no cover
|
|
"""A specific `PydanticDeprecationWarning` subclass defining functionality deprecated since Pydantic 2.6."""
|
|
|
|
def __init__(self, message: str, *args: object) -> None:
|
|
super().__init__(message, *args, since=(2, 6), expected_removal=(3, 0))
|
|
|
|
|
|
class PydanticDeprecatedSince29(PydanticDeprecationWarning):
|
|
"""A specific `PydanticDeprecationWarning` subclass defining functionality deprecated since Pydantic 2.9."""
|
|
|
|
def __init__(self, message: str, *args: object) -> None:
|
|
super().__init__(message, *args, since=(2, 9), expected_removal=(3, 0))
|
|
|
|
|
|
class PydanticDeprecatedSince210(PydanticDeprecationWarning):
|
|
"""A specific `PydanticDeprecationWarning` subclass defining functionality deprecated since Pydantic 2.10."""
|
|
|
|
def __init__(self, message: str, *args: object) -> None:
|
|
super().__init__(message, *args, since=(2, 10), expected_removal=(3, 0))
|
|
|
|
|
|
class PydanticDeprecatedSince211(PydanticDeprecationWarning):
|
|
"""A specific `PydanticDeprecationWarning` subclass defining functionality deprecated since Pydantic 2.11."""
|
|
|
|
def __init__(self, message: str, *args: object) -> None:
|
|
super().__init__(message, *args, since=(2, 11), expected_removal=(3, 0))
|
|
|
|
|
|
class PydanticDeprecatedSince212(PydanticDeprecationWarning):
|
|
"""A specific `PydanticDeprecationWarning` subclass defining functionality deprecated since Pydantic 2.12."""
|
|
|
|
def __init__(self, message: str, *args: object) -> None:
|
|
super().__init__(message, *args, since=(2, 12), expected_removal=(3, 0))
|
|
|
|
|
|
class GenericBeforeBaseModelWarning(Warning):
|
|
pass
|
|
|
|
|
|
class PydanticExperimentalWarning(Warning):
|
|
"""A Pydantic specific experimental functionality warning.
|
|
|
|
It is raised to warn users that the functionality may change or be removed in future versions of Pydantic.
|
|
"""
|
|
|
|
|
|
class CoreSchemaGenerationWarning(UserWarning):
|
|
"""A warning raised during core schema generation."""
|
|
|
|
|
|
class ArbitraryTypeWarning(CoreSchemaGenerationWarning):
|
|
"""A warning raised when Pydantic fails to generate a core schema for an arbitrary type."""
|
|
|
|
|
|
class UnsupportedFieldAttributeWarning(CoreSchemaGenerationWarning):
|
|
"""A warning raised when a `Field()` attribute isn't supported in the context it is used."""
|
|
|
|
|
|
class TypedDictExtraConfigWarning(CoreSchemaGenerationWarning):
|
|
"""A warning raised when the [`extra`][pydantic.ConfigDict.extra] configuration is incompatible with the `closed` or `extra_items` specification."""
|