From 7297ffa16eb539d319fb7a68b9808b351575ee8c Mon Sep 17 00:00:00 2001 From: Andrew <11490628+andrew000@users.noreply.github.com> Date: Mon, 9 Sep 2024 20:05:01 +0300 Subject: [PATCH] Increase `pydantic` max version (`<2.9` -> `<2.10`) (#1576) * Increase `pydantic` max version (2.10) * Add changes file --- CHANGES/1576.feature.rst | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 CHANGES/1576.feature.rst diff --git a/CHANGES/1576.feature.rst b/CHANGES/1576.feature.rst new file mode 100644 index 00000000..fa05fa57 --- /dev/null +++ b/CHANGES/1576.feature.rst @@ -0,0 +1 @@ +Increase max pydantic version support "<2.9" -> "<2.10" diff --git a/pyproject.toml b/pyproject.toml index 71789d5c..6b2e39b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ classifiers = [ dependencies = [ "magic-filter>=1.0.12,<1.1", "aiohttp>=3.9.0,<3.11", - "pydantic>=2.4.1,<2.9", + "pydantic>=2.4.1,<2.10", "aiofiles~=23.2.1", "certifi>=2023.7.22", "typing-extensions>=4.7.0,<=5.0",