Skip to content

Commit 4cd2243

Browse files
authored
Merge pull request #805 from superannotateai/version_update
version update
2 parents 86ccb7f + 64225a6 commit 4cd2243

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plotly~=5.14
77
pandas~=2.0
88
ffmpeg-python~=0.2
99
pillow>=9.5,~=10.0
10-
tqdm~=4.66.1
10+
tqdm~=4.66
1111
requests==2.*
1212
aiofiles==23.*
1313
fire==0.4.0

src/superannotate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44

55

6-
__version__ = "4.4.36"
6+
__version__ = "4.4.37"
77

88

99
os.environ.update({"sa_version": __version__})

src/superannotate/lib/infrastructure/services/http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def serialize_response(
295295
else:
296296
data["res_data"] = data_json
297297
return content_type(**data)
298-
except json.decoder.JSONDecodeError:
298+
except ValueError:
299299
data["res_error"] = response.content
300300
data["reason"] = response.reason
301301
return content_type(**data)

0 commit comments

Comments
 (0)