Skip to content

Commit d6f0d20

Browse files
authored
Relax dependency version requirements (#167)
* Relax dependency constraints * Bump version to `6.0.1` * pin backoff and simplejson to major version * Don't allow older versions * Update changelog * Pin minumum and major versions
1 parent 0d0ff1e commit d6f0d20

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog
22

3+
## 6.0.1
4+
* Pin backoff and simplejson to any version greater than or equal to the previously allowed version, up to the next major version [#167](https://github.com/singer-io/singer-python/pull/167)
5+
36
## 6.0.0
4-
* Bump backoff version to 2.2.1. This version drops support for python 3.5, but adds it for 3.1o [#165](https://github.com/singer-io/singer-python/pull/165)
7+
* Bump backoff version to 2.2.1. This version drops support for python 3.5, but adds it for 3.10 [#165](https://github.com/singer-io/singer-python/pull/165)
58

69
## 5.13.0
710
* Add support for dev mode argument parsing [#158](https://github.com/singer-io/singer-python/pull/158)

setup.py

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

66
setup(name="singer-python",
7-
version='6.0.0',
7+
version='6.0.1',
88
description="Singer.io utility library",
99
author="Stitch",
1010
classifiers=['Programming Language :: Python :: 3 :: Only'],
1111
url="http://singer.io",
1212
install_requires=[
1313
'pytz>=2018.4',
14-
'jsonschema==2.6.0',
15-
'simplejson==3.11.1',
16-
'python-dateutil>=2.6.0',
17-
'backoff==2.2.1',
18-
'ciso8601',
14+
'jsonschema>=2.6.0,==2.*',
15+
'simplejson>=3.13.2,==3.*',
16+
'python-dateutil>=2.7.3,==2.*',
17+
'backoff>=2.2.1,==2.*',
18+
'ciso8601>=2.3.1,==2.*',
1919
],
2020
extras_require={
2121
'dev': [

0 commit comments

Comments
 (0)