From ccb2939ceb8e88daaaf2cdb49fa7aeb745631e3e Mon Sep 17 00:00:00 2001 From: Jim Robertson Date: Mon, 30 Mar 2020 10:37:58 +1100 Subject: [PATCH 1/2] loosen pytz requirement The updates to pytz have just been timezone db changes, which are important changes to bring in. It'd be great to be able to pin applications against specific versions, rather than have it enforced by singer-python --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 90df264..f8556db 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ classifiers=['Programming Language :: Python :: 3 :: Only'], url="http://singer.io", install_requires=[ - 'pytz==2018.4', + 'pytz>=2018.4', 'jsonschema==2.6.0', 'simplejson==3.11.1', 'python-dateutil>=2.6.0', From 28194892b19efcd1657d9501621fc66d41536882 Mon Sep 17 00:00:00 2001 From: Jim Robertson Date: Mon, 30 Mar 2020 10:48:10 +1100 Subject: [PATCH 2/2] expand jsonschema deps as well --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f8556db..474ddf6 100755 --- a/setup.py +++ b/setup.py @@ -10,8 +10,8 @@ classifiers=['Programming Language :: Python :: 3 :: Only'], url="http://singer.io", install_requires=[ - 'pytz>=2018.4', - 'jsonschema==2.6.0', + 'pytz>=2018.4,<=2019.3', + 'jsonschema>=2.6.0,<=3.2.0', 'simplejson==3.11.1', 'python-dateutil>=2.6.0', 'backoff==1.8.0',