diff --git a/pyproject.toml b/pyproject.toml index e02e00b..4a42885 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,8 +9,8 @@ packages = [{include = "flymyai"}] [tool.poetry.dependencies] python = ">=3.8" httpx = {extras = ["http2"], version = ">=0.26.0"} -pydantic = ">2.0.0" -typing-extensions = "^4.9.0" +pydantic = ">=2.0.0" +typing-extensions = ">=4.9.0" setuptools = ">69.1.1" [tool.poetry.dev-dependencies] @@ -18,8 +18,8 @@ python = ">=3.8" httpx = ">=0.26.0" [tool.poetry.group.dev.dependencies] -tomli = "^2.0.1" -pytest-asyncio = "^0.23.7" +tomli = ">=2.0.1" +pytest-asyncio = ">=0.23.7" [build-system] requires = ["poetry-core"] diff --git a/pyproject.toml.template b/pyproject.toml.template index b301d88..e12d73d 100644 --- a/pyproject.toml.template +++ b/pyproject.toml.template @@ -9,8 +9,8 @@ packages = [{include = "flymyai"}] [tool.poetry.dependencies] python = ">=3.8" httpx = {extras = ["http2"], version = ">=0.26.0"} -pydantic = ">2.0.0" -typing-extensions = "^4.9.0" +pydantic = ">=2.0.0" +typing-extensions = ">=4.9.0" setuptools = ">69.1.1" [tool.poetry.dev-dependencies] @@ -18,8 +18,8 @@ python = ">=3.8" httpx = ">=0.26.0" [tool.poetry.group.dev.dependencies] -tomli = "^2.0.1" -pytest-asyncio = "^0.23.7" +tomli = ">=2.0.1" +pytest-asyncio = ">=0.23.7" [build-system] requires = ["poetry-core"] diff --git a/requirements.txt b/requirements.txt index b11f987..a269cd4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -pytest~=7.4.3 -click~=8.1.7 -httpx~=0.25.2 +pytest>=7.4.3 +click>=8.1.7 +httpx>=0.25.2 pydantic>=2.0.0 -typing_extensions~=4.8.0 +typing_extensions>=4.8.0 setuptools>69.1.1 \ No newline at end of file