Skip to content

Commit

Permalink
lib-hoppy: update/specify setuptools version to pass vulnerability sc…
Browse files Browse the repository at this point in the history
…an (#3200)

Specify setuptools version, update description, and change required python version.
  • Loading branch information
dfitchett authored Jul 16, 2024
1 parent cd2ac96 commit ae7688c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shared/lib-hoppy/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -35,4 +35,4 @@ testpaths = [
"test",
"integration" # depends on rabbitmq-service
]
timeout=5
timeout = 5

0 comments on commit ae7688c

Please sign in to comment.