singer-python 5.13.1__tar.gz → 5.13.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. {singer_python-5.13.1/singer_python.egg-info → singer_python-5.13.2}/PKG-INFO +10 -3
  2. {singer_python-5.13.1 → singer_python-5.13.2}/setup.py +2 -2
  3. {singer_python-5.13.1 → singer_python-5.13.2/singer_python.egg-info}/PKG-INFO +10 -3
  4. {singer_python-5.13.1 → singer_python-5.13.2}/singer_python.egg-info/requires.txt +1 -1
  5. {singer_python-5.13.1 → singer_python-5.13.2}/LICENSE +0 -0
  6. {singer_python-5.13.1 → singer_python-5.13.2}/README.md +0 -0
  7. {singer_python-5.13.1 → singer_python-5.13.2}/setup.cfg +0 -0
  8. {singer_python-5.13.1 → singer_python-5.13.2}/singer/__init__.py +0 -0
  9. {singer_python-5.13.1 → singer_python-5.13.2}/singer/bookmarks.py +0 -0
  10. {singer_python-5.13.1 → singer_python-5.13.2}/singer/catalog.py +0 -0
  11. {singer_python-5.13.1 → singer_python-5.13.2}/singer/exceptions.py +0 -0
  12. {singer_python-5.13.1 → singer_python-5.13.2}/singer/logger.py +0 -0
  13. {singer_python-5.13.1 → singer_python-5.13.2}/singer/logging.conf +0 -0
  14. {singer_python-5.13.1 → singer_python-5.13.2}/singer/messages.py +0 -0
  15. {singer_python-5.13.1 → singer_python-5.13.2}/singer/metadata.py +0 -0
  16. {singer_python-5.13.1 → singer_python-5.13.2}/singer/metrics.py +0 -0
  17. {singer_python-5.13.1 → singer_python-5.13.2}/singer/requests.py +0 -0
  18. {singer_python-5.13.1 → singer_python-5.13.2}/singer/schema.py +0 -0
  19. {singer_python-5.13.1 → singer_python-5.13.2}/singer/statediff.py +0 -0
  20. {singer_python-5.13.1 → singer_python-5.13.2}/singer/transform.py +0 -0
  21. {singer_python-5.13.1 → singer_python-5.13.2}/singer/utils.py +0 -0
  22. {singer_python-5.13.1 → singer_python-5.13.2}/singer_python.egg-info/SOURCES.txt +0 -0
  23. {singer_python-5.13.1 → singer_python-5.13.2}/singer_python.egg-info/dependency_links.txt +0 -0
  24. {singer_python-5.13.1 → singer_python-5.13.2}/singer_python.egg-info/top_level.txt +0 -0
  25. {singer_python-5.13.1 → singer_python-5.13.2}/tests/__init__.py +0 -0
  26. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_bookmarks.py +0 -0
  27. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_catalog.py +0 -0
  28. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_exceptions.py +0 -0
  29. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_metadata.py +0 -0
  30. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_metrics.py +0 -0
  31. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_schema.py +0 -0
  32. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_singer.py +0 -0
  33. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_statediff.py +0 -0
  34. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_transform.py +0 -0
  35. {singer_python-5.13.1 → singer_python-5.13.2}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: singer-python
3
- Version: 5.13.1
3
+ Version: 5.13.2
4
4
  Summary: Singer.io utility library
5
5
  Home-page: http://singer.io
6
6
  Author: Stitch
@@ -10,7 +10,7 @@ Requires-Dist: pytz>=2018.4
10
10
  Requires-Dist: jsonschema==2.6.0
11
11
  Requires-Dist: simplejson==3.11.1
12
12
  Requires-Dist: python-dateutil>=2.6.0
13
- Requires-Dist: backoff==1.8.0
13
+ Requires-Dist: backoff==1.10.0
14
14
  Requires-Dist: ciso8601
15
15
  Provides-Extra: dev
16
16
  Requires-Dist: pylint; extra == "dev"
@@ -18,3 +18,10 @@ Requires-Dist: ipython; extra == "dev"
18
18
  Requires-Dist: ipdb; extra == "dev"
19
19
  Requires-Dist: nose; extra == "dev"
20
20
  Requires-Dist: singer-tools; extra == "dev"
21
+ Dynamic: author
22
+ Dynamic: classifier
23
+ Dynamic: home-page
24
+ Dynamic: license-file
25
+ Dynamic: provides-extra
26
+ Dynamic: requires-dist
27
+ Dynamic: summary
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
4
4
  import subprocess
5
5
 
6
6
  setup(name="singer-python",
7
- version='5.13.1',
7
+ version='5.13.2',
8
8
  description="Singer.io utility library",
9
9
  author="Stitch",
10
10
  classifiers=['Programming Language :: Python :: 3 :: Only'],
@@ -14,7 +14,7 @@ setup(name="singer-python",
14
14
  'jsonschema==2.6.0',
15
15
  'simplejson==3.11.1',
16
16
  'python-dateutil>=2.6.0',
17
- 'backoff==1.8.0',
17
+ 'backoff==1.10.0',
18
18
  'ciso8601',
19
19
  ],
20
20
  extras_require={
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: singer-python
3
- Version: 5.13.1
3
+ Version: 5.13.2
4
4
  Summary: Singer.io utility library
5
5
  Home-page: http://singer.io
6
6
  Author: Stitch
@@ -10,7 +10,7 @@ Requires-Dist: pytz>=2018.4
10
10
  Requires-Dist: jsonschema==2.6.0
11
11
  Requires-Dist: simplejson==3.11.1
12
12
  Requires-Dist: python-dateutil>=2.6.0
13
- Requires-Dist: backoff==1.8.0
13
+ Requires-Dist: backoff==1.10.0
14
14
  Requires-Dist: ciso8601
15
15
  Provides-Extra: dev
16
16
  Requires-Dist: pylint; extra == "dev"
@@ -18,3 +18,10 @@ Requires-Dist: ipython; extra == "dev"
18
18
  Requires-Dist: ipdb; extra == "dev"
19
19
  Requires-Dist: nose; extra == "dev"
20
20
  Requires-Dist: singer-tools; extra == "dev"
21
+ Dynamic: author
22
+ Dynamic: classifier
23
+ Dynamic: home-page
24
+ Dynamic: license-file
25
+ Dynamic: provides-extra
26
+ Dynamic: requires-dist
27
+ Dynamic: summary
@@ -2,7 +2,7 @@ pytz>=2018.4
2
2
  jsonschema==2.6.0
3
3
  simplejson==3.11.1
4
4
  python-dateutil>=2.6.0
5
- backoff==1.8.0
5
+ backoff==1.10.0
6
6
  ciso8601
7
7
 
8
8
  [dev]
File without changes
File without changes
File without changes