Skip to content

Commit 4508d1c

Browse files
Packaging for 3.8.2 (#375)
* Packaging for 3.8.2 * Format file * Fix format
1 parent 666fa0c commit 4508d1c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

HISTORY.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Flow Production Tracking Python API Changelog
44

55
Here you can see the full list of changes between each Python API release.
66

7+
v3.8.2 (2025 Mar 11)
8+
====================
9+
10+
- Prevent flaky disconnection when uploading thumbnails on publish.
11+
There's a flaky disconnection when the publisher uploads the thumbnail to the server.
12+
The most common errors were: ``Connection closed by peer`` and ``URLopen error EOF occurred in violation of protocol ssl.c:1006``.
13+
714
v3.8.1 (2025 Feb 25)
815
====================
916

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name="shotgun_api3",
23-
version="3.8.1",
23+
version="3.8.2",
2424
description="Flow Production Tracking Python API",
2525
long_description=readme,
2626
author="Autodesk",

shotgun_api3/shotgun.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def _is_mimetypes_broken():
122122

123123
# ----------------------------------------------------------------------------
124124
# Version
125-
__version__ = "3.8.1"
125+
__version__ = "3.8.2"
126126

127127
# ----------------------------------------------------------------------------
128128
# Errors
@@ -4634,7 +4634,6 @@ def _send_form(self, url, params):
46344634

46354635
params.update(self._auth_params())
46364636

4637-
46384637
attempt = 1
46394638
while attempt <= self.MAX_ATTEMPTS:
46404639
# Perform the request

0 commit comments

Comments
 (0)