From d60a10fa5950728aa7f4ef081b418a3c625932f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 28 Jun 2019 12:36:08 +0200 Subject: [PATCH] :arrow_up: Upgrade support for Pydantic to 0.29 (#344) --- Pipfile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Pipfile b/Pipfile index 83f8954dc..8b0ef8e9e 100644 --- a/Pipfile +++ b/Pipfile @@ -26,7 +26,7 @@ uvicorn = "*" [packages] starlette = "==0.12.0" -pydantic = "==0.28.0" +pydantic = "==0.29.0" databases = {extras = ["sqlite"],version = "*"} hypercorn = "*" diff --git a/pyproject.toml b/pyproject.toml index fca05a81a..90ba93f80 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ ] requires = [ "starlette >=0.11.1,<=0.12.0", - "pydantic >=0.28,<=0.28.0" + "pydantic >=0.28,<=0.29.0" ] description-file = "README.md" requires-python = ">=3.6"