-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BACKEND-946] [BACKEND-947] [BACKEND-948] pass thru errors, retry, ca…
…tch bad annotation types (#55) * catch bad inputs * print response when fail * update labeling frontend test to work with any project even if it has more than the default editors * yapf * Update client.py * catch actual errors * loosen requirements + catch actual error for reraise * print 400s * catchall for other errors * retry * ignore missing improrts * update version and changelog
- Loading branch information
Showing
8 changed files
with
67 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,20 @@ | |
|
||
setuptools.setup( | ||
name="labelbox", | ||
version="2.4.4", | ||
version="2.4.5", | ||
author="Labelbox", | ||
author_email="[email protected]", | ||
description="Labelbox Python API", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://labelbox.com", | ||
packages=setuptools.find_packages(), | ||
install_requires=["backoff==1.10.0", "ndjson==0.3.1", "requests==2.22.0"], | ||
install_requires=[ | ||
"backoff==1.10.0", | ||
"ndjson==0.3.1", | ||
"requests>=2.22.0", | ||
"google-api-core>=1.22.1", | ||
], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'License :: OSI Approved :: Apache Software License', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters