Skip to content

Commit 0c066de

Browse files
remove pinned pytz version (#152)
* remove pinned version * use a floor of 2018.4 for pytz * update changelog Co-authored-by: Collin Simon <csimon@talend.com>
1 parent 66688d7 commit 0c066de

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
3+
## 5.12.2
4+
* Removes pinned `pytz` version [#152](https://github.com/singer-io/singer-python/pull/152)
5+
26
## 5.12.1
37
* Removes normalize function from `singer.decimal` to avoid scientific notation [#146](https://github.com/singer-io/singer-python/pull/146)
48

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
import subprocess
55

66
setup(name="singer-python",
7-
version='5.12.1',
7+
version='5.12.2',
88
description="Singer.io utility library",
99
author="Stitch",
1010
classifiers=['Programming Language :: Python :: 3 :: Only'],
1111
url="http://singer.io",
1212
install_requires=[
13-
'pytz==2018.4',
13+
'pytz>=2018.4',
1414
'jsonschema==2.6.0',
1515
'simplejson==3.11.1',
1616
'python-dateutil>=2.6.0',

0 commit comments

Comments
 (0)