From 005374f828b77fa91b08e74b715210845da375da Mon Sep 17 00:00:00 2001 From: jmfiola Date: Tue, 28 May 2024 12:36:26 -0600 Subject: [PATCH 1/2] change dependencies to not make things take forever downstream --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 10c2db8..7f6cf6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,14 +30,14 @@ keywords = ["load testing", "performance", "locust", "grasshopper"] license = {file = "LICENSE"} requires-python = ">=3.10,<4" dependencies = [ - "gevent ~=24.2.1", - "influxdb ~= 5.3.1", + "gevent >=24.2.1", + "influxdb >= 5.3.1", "locust ~= 2.23.1", "locust-influxdb-listener ~= 1.0.2", - "pytest ~= 6.2.5", + "pytest >= 6.2.5", "pyyaml >= 5.4.1", - "tag-matcher ~= 0.0.5", - "termcolor ~= 1.1.0", + "tag-matcher >= 0.0.5", + "termcolor >= 1.1.0", ] [project.optional-dependencies] From 271b1eb285d35f7a0e51f6524438b97272a3481f Mon Sep 17 00:00:00 2001 From: jmfiola Date: Tue, 28 May 2024 12:55:34 -0600 Subject: [PATCH 2/2] fix some dependencies to conform to existing unit tests --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7f6cf6b..566137a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,12 +32,12 @@ requires-python = ">=3.10,<4" dependencies = [ "gevent >=24.2.1", "influxdb >= 5.3.1", - "locust ~= 2.23.1", - "locust-influxdb-listener ~= 1.0.2", + "locust ~= 2.23", + "locust-influxdb-listener ~= 1.0", "pytest >= 6.2.5", "pyyaml >= 5.4.1", "tag-matcher >= 0.0.5", - "termcolor >= 1.1.0", + "termcolor ~= 1.0", ] [project.optional-dependencies]