From 32a51a51d7818e56228bab1959f66cfe0c3def9e Mon Sep 17 00:00:00 2001 From: q0w <43147888+q0w@users.noreply.github.com> Date: Fri, 22 Dec 2023 17:59:05 +0500 Subject: [PATCH] Remove upper constraints (#27) * Remove upper constraints * bump version --- poetry.lock | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/poetry.lock b/poetry.lock index 77a409d..e42e8d7 100644 --- a/poetry.lock +++ b/poetry.lock @@ -742,4 +742,4 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "6a6517dbb685102bc13ea4277b0756b6b641bd4afa010988d3ae05e05169d7f6" +content-hash = "2c7e2157d5e08845d44ae039308ba637cb3932f38ca26165b3a1ce906e03f9f5" diff --git a/pyproject.toml b/pyproject.toml index 471f257..73475c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pydjantic" -version = "1.1.2" +version = "1.1.3" description = "Pydantic Settings for Django" authors = ["Vladimir Vyazovetskov "] license = "MIT" @@ -23,9 +23,9 @@ include = [ [tool.poetry.dependencies] python = "^3.8" -dj-database-url = "^2.1.0" -pydantic = "^2.5.2" -pydantic-settings = "^2.1.0" +dj-database-url = ">=2.1.0" +pydantic = ">=2.5.2" +pydantic-settings = ">=2.1.0" [tool.poetry.dev-dependencies] pytest = "^6.2.2"