From 6e07f2b4b7be21f6fcb7603d27caa560f34159c8 Mon Sep 17 00:00:00 2001 From: Igor Benav Date: Wed, 18 Sep 2024 22:46:51 -0300 Subject: [PATCH] now supporting fastapi >= 0.100.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3e41359..667bfc8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fastcrud" -version = "0.15.0" +version = "0.15.1" description = "FastCRUD is a Python package for FastAPI, offering robust async CRUD operations and flexible endpoint creation utilities." authors = ["Igor Benav "] license = "MIT" @@ -30,7 +30,7 @@ python = "^3.9" SQLAlchemy = "^2.0.0" pydantic = "^2.0.0" SQLAlchemy-Utils = "^0.41.1" -fastapi = ">=0.100.0,<0.112.0" +fastapi = ">=0.100.0" [tool.poetry.dev-dependencies] pytest = "^7.4.4"