From a9b0b9d9136fcc4116e986db866e3583099cbb12 Mon Sep 17 00:00:00 2001 From: Rushil Srivastava Date: Sun, 10 Jan 2021 03:53:26 -0800 Subject: [PATCH] add min dependencies --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c27ab78..dab8473 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,11 +16,11 @@ include = ["LICENSE", "README.md"] [tool.poetry.dependencies] python = "^3.7" -fastapi = "*" -uvicorn = "*" -aioredis = {version = "*", optional = true} -aiomcache = {version = "*", optional = true} -python-dateutil = "*" +fastapi = ">=0.63.0" +uvicorn = ">=0.12.0" +aioredis = {version = ">=1.3.1", optional = true} +aiomcache = {version = ">=0.6.0", optional = true} +python-dateutil = ">=2.8.1" [tool.poetry.dev-dependencies] flake8 = "*"