From a64aacd7825b63ce01668e8bf059cd10c6bf2684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 4 Jul 2023 13:29:28 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20temp:=20Install=20Pydantic=20from?= =?UTF-8?q?=20source=20to=20test=20JSON=20Schema=20metadata=20fixes=20(#97?= =?UTF-8?q?77)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ➕ Install Pydantic from source, from branch for JSON Schema with metadata * ➕ Update dependencies, install Pydantic main * ➕ Fix dependency URL for Pydantic from source * ➕ Add pydantic-settings for test requirements --- pyproject.toml | 2 +- requirements-tests.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a945d570f..7c48cbbdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ classifiers = [ ] dependencies = [ "starlette>=0.27.0,<0.28.0", - "pydantic>=1.7.4,!=1.8,!=1.8.1,<3.0.0", + # "pydantic>=1.7.4,!=1.8,!=1.8.1,<3.0.0", "typing-extensions>=4.5.0", ] dynamic = ["version"] diff --git a/requirements-tests.txt b/requirements-tests.txt index fbd20c11a..e4afd988d 100644 --- a/requirements-tests.txt +++ b/requirements-tests.txt @@ -1,4 +1,5 @@ -e . +pydantic-settings >=2.0.0 pytest >=7.1.3,<8.0.0 coverage[toml] >= 6.5.0,< 8.0 mypy ==1.4.0 @@ -24,3 +25,5 @@ passlib[bcrypt] >=1.7.2,<2.0.0 # types types-ujson ==5.7.0.1 types-orjson ==3.6.2 + +git+https://github.com/pydantic/pydantic.git