From 24ca1226106f59b9223da36be82058fcc2567c9b Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 13 Nov 2024 17:01:25 +0100 Subject: [PATCH] chore: pin major version of dependencies (#721) Signed-off-by: Alex --- setup.cfg | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0db8c376..6277542a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,19 +23,19 @@ include_package_data = True packages = find: python_requires = >=3.9 install_requires = - aiohttp - pyparsing >= 3.0 - jsonschema - jinja2 - dpath >= 2.1.4 - janus - ansible-runner - websockets + aiohttp >=3,<4 + pyparsing >= 3.0,<4 + jsonschema >=4,<5 + jinja2 >=3,<4 + dpath >= 2.1.4,<3 + janus >=1,<2 + ansible-runner >=2,<3 + websockets >=10,<14 drools_jpy == 0.3.9 - watchdog - xxhash - pyyaml - psycopg[binary] + watchdog >=3,<7 + xxhash >=3,<4 + pyyaml >=6,<7 + psycopg[binary] >=3,<4 [options.packages.find] include = @@ -61,6 +61,6 @@ extend-ignore = [options.extras_require] production = - psycopg[c] + psycopg[c] >=3,<4 development = - psycopg[binary] + psycopg[binary] >=3,<4