Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down