We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0626ca2 commit 6ee4314Copy full SHA for 6ee4314
2 files changed
setup.py
@@ -4,7 +4,7 @@
4
import subprocess
5
6
setup(name="singer-python",
7
- version='3.3.2',
+ version='3.3.3',
8
description="Singer.io utility library",
9
author="Stitch",
10
classifiers=['Programming Language :: Python :: 3 :: Only'],
singer/utils.py
@@ -6,7 +6,7 @@
import time
import dateutil
import pytz
-import backoff
+import backoff as backoff_module
11
from singer.catalog import Catalog
12
@@ -143,8 +143,8 @@ def check_config(config, required_keys):
143
144
145
def backoff(exceptions, giveup):
146
- return backoff.on_exception(
147
- backoff.expo,
+ return backoff_module.on_exception(
+ backoff_module.expo,
148
exceptions,
149
max_tries=5,
150
giveup=giveup,
0 commit comments