From 2de8c66c70c22301a246bdf2d739969c8abe76f8 Mon Sep 17 00:00:00 2001 From: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> Date: Wed, 5 Oct 2022 15:13:54 +0800 Subject: [PATCH] :arrow_up: upgrade pydantic dependency (#1305) --- poetry.lock | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/poetry.lock b/poetry.lock index 7c64d27f..6d96b29a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -396,7 +396,7 @@ python-versions = ">=3.6.1" [[package]] name = "identify" -version = "2.5.5" +version = "2.5.6" description = "File identification library for Python" category = "dev" optional = false @@ -678,15 +678,15 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" [[package]] name = "pydantic" -version = "1.9.2" +version = "1.10.2" description = "Data validation and settings management using python type hints" category = "main" optional = false -python-versions = ">=3.6.1" +python-versions = ">=3.7" [package.dependencies] python-dotenv = {version = ">=0.10.4", optional = true, markers = "extra == \"dotenv\""} -typing-extensions = ">=3.7.4.3" +typing-extensions = ">=4.1.0" [package.extras] dotenv = ["python-dotenv (>=0.10.4)"] @@ -1076,7 +1076,7 @@ websockets = ["websockets"] [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "3b21339de9113224b61700da359ea53ef866677d19c0bdbad7126e33ceceb856" +content-hash = "a4a8da0510758a7da5a2c941518505d44099bad4d77ccef30812e5e73e8a9f7f" [metadata.files] aiodns = [ diff --git a/pyproject.toml b/pyproject.toml index 68ea7d09..c931efea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ tomlkit = ">=0.10.0,<1.0.0" typing-extensions = ">=3.10.0,<5.0.0" Quart = { version = "^0.17.0", optional = true } websockets = { version="^10.0", optional = true } -pydantic = { version = "~1.9.0", extras = ["dotenv"] } +pydantic = { version = "^1.9.0", extras = ["dotenv"] } uvicorn = { version = "^0.18.0", extras = ["standard"] } aiohttp = { version = "^3.7.4", extras = ["speedups"], optional = true } httpx = { version = ">=0.20.0, <1.0.0", extras = ["http2"], optional = true }