From 142049537557bea3a0e1d0f87bef1e345ef560c6 Mon Sep 17 00:00:00 2001 From: eric_lebail Date: Fri, 2 Apr 2021 15:17:25 +0200 Subject: [PATCH 1/2] Update jsonschema version and other dependencies --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 90df264..ad54c86 100755 --- a/setup.py +++ b/setup.py @@ -4,17 +4,17 @@ import subprocess setup(name="singer-python", - version='5.12.1', + version='5.12.2', description="Singer.io utility library", author="Stitch", classifiers=['Programming Language :: Python :: 3 :: Only'], url="http://singer.io", install_requires=[ - 'pytz==2018.4', - 'jsonschema==2.6.0', - 'simplejson==3.11.1', + 'pytz>=2018.4', + 'jsonschema>=3.0,<4.0', + 'simplejson>=3.11.1', 'python-dateutil>=2.6.0', - 'backoff==1.8.0', + 'backoff>=1.8.0', 'ciso8601', ], extras_require={ From 44b3ce0424eb90f5dd5b92188d07a7680ad7f54a Mon Sep 17 00:00:00 2001 From: eric_lebail Date: Fri, 2 Apr 2021 15:22:52 +0200 Subject: [PATCH 2/2] Update Changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a9ebcc..510d5f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Changelog +## 5.12.2 + * Update dependencies versions + ## 5.12.1 * Removes normalize function from `singer.decimal` to avoid scientific notation [#146](https://github.com/singer-io/singer-python/pull/146)