From ae7688c9e526b84e2fc9a64cfcd37ec129e8a83b Mon Sep 17 00:00:00 2001 From: Derek Fitchett <135860892+dfitchett@users.noreply.github.com> Date: Tue, 16 Jul 2024 11:12:27 -0700 Subject: [PATCH] lib-hoppy: update/specify setuptools version to pass vulnerability scan (#3200) Specify setuptools version, update description, and change required python version. --- shared/lib-hoppy/pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shared/lib-hoppy/pyproject.toml b/shared/lib-hoppy/pyproject.toml index d1bf745c7e..2060056ae8 100644 --- a/shared/lib-hoppy/pyproject.toml +++ b/shared/lib-hoppy/pyproject.toml @@ -1,11 +1,11 @@ [build-system] -requires = ["setuptools"] +requires = ["setuptools >= 70.0.0"] build-backend = "setuptools.build_meta" [project] name = "hoppy" -description = "Python library for building VRO microservices that need to interact with Rabbit MQ" -requires-python = ">=3.6" +description = "Python library for building asynchrounous REST-like clients that perform requests and receive responses over Rabbit MQ" +requires-python = ">= 3.10" dependencies = [ "pika", "pytest", @@ -35,4 +35,4 @@ testpaths = [ "test", "integration" # depends on rabbitmq-service ] -timeout=5 +timeout = 5