From 58b14717aaefee356f6a9bac4cc939e5fca732ce Mon Sep 17 00:00:00 2001 From: Vitaliy Potyarkin Date: Wed, 7 May 2025 13:30:39 +0300 Subject: [PATCH] [#379] Add missing dependencies: configobj, httpx Some packages were missing from the dependency list even though they were being imported from our code. Signed-off-by: Vitaliy Potyarkin --- pyproject.toml | 5 ++++- requirements.txt | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d62f04b..2d107c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,9 @@ dependencies = [ "tenacity==8.0.1", "boto3==1.35.30", "boto3-stubs[s3,iam,sts]==1.35.30", + "pydantic==2.10.6", + "configobj==5.0.6", + "httpx==0.28.1", ] requires-python = ">=3.10" @@ -92,4 +95,4 @@ filterwarnings = [ testpaths = ["tests"] [project.entry-points.pytest11] -testlib = "frostfs_testlib" \ No newline at end of file +testlib = "frostfs_testlib" diff --git a/requirements.txt b/requirements.txt index 56d9b83..b97919c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,6 +11,8 @@ pytest==7.1.2 boto3==1.35.30 boto3-stubs[s3,iam,sts]==1.35.30 pydantic==2.10.6 +configobj==5.0.6 +httpx==0.28.1 # Dev dependencies black==22.8.0 @@ -22,4 +24,4 @@ pylint==2.17.4 # Packaging dependencies build==0.8.0 setuptools==65.3.0 -twine==4.0.1 \ No newline at end of file +twine==4.0.1 -- 2.47.2