From 743f521cd1acf2d98d2964f1cf310920c2d14159 Mon Sep 17 00:00:00 2001 From: D1-3105 Date: Wed, 4 Dec 2024 00:51:03 +0300 Subject: [PATCH 1/2] fix dependencies --- pyproject.toml | 8 ++++---- pyproject.toml.template | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) 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"] From 4e92e8887d95bb562dba36a04dc56c923b05f5d0 Mon Sep 17 00:00:00 2001 From: D1-3105 Date: Wed, 4 Dec 2024 01:03:00 +0300 Subject: [PATCH 2/2] fix dependencies --- requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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