From 41c501d62fb02277cf739d111ea0873884080a7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mindaugas=20Ni=C5=BEauskas?= Date: Fri, 5 May 2023 08:18:46 +0300 Subject: [PATCH] add comma after specifying min version --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index e2dc574..c51d588 100644 --- a/setup.py +++ b/setup.py @@ -48,10 +48,10 @@ def find_version(*paths): packages=find_packages(), install_requires=[ 'attrs==18.2.0', - 'pendulum>=1.2.0<2.0.0', - 'singer-python>=5.12.2<6.0.0', - 'backoff>=1.3.2<2.0.0', - 'psycopg2>=2.9.3<3.0.0', + 'pendulum>=1.2.0,<2.0.0', + 'singer-python>=5.12.2,<6.0.0', + 'backoff>=1.3.2,<2.0.0', + 'psycopg2>=2.9.3,<3.0.0', ], setup_requires=[ 'pytest-runner>=2.11,<3.0a',