Skip to content

Commit

Permalink
Relax dependency version requirements (#167)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
bryantgray committed Mar 19, 2024
1 parent 0d0ff1e commit d6f0d20
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog

## 6.0.1
* 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)

## 6.0.0
* 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)
* 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)

## 5.13.0
* Add support for dev mode argument parsing [#158](https://github.com/singer-io/singer-python/pull/158)
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
import subprocess

setup(name="singer-python",
version='6.0.0',
version='6.0.1',
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',
'python-dateutil>=2.6.0',
'backoff==2.2.1',
'ciso8601',
'jsonschema>=2.6.0,==2.*',
'simplejson>=3.13.2,==3.*',
'python-dateutil>=2.7.3,==2.*',
'backoff>=2.2.1,==2.*',
'ciso8601>=2.3.1,==2.*',
],
extras_require={
'dev': [
Expand Down

0 comments on commit d6f0d20

Please sign in to comment.