From a78cd7d4f4bbb0b90856ae40a953ad3ab4dbdacd Mon Sep 17 00:00:00 2001 From: Eduardo Chauca Date: Wed, 10 Sep 2025 18:07:08 -0500 Subject: [PATCH 1/3] packaging for the v3.8.6 release --- HISTORY.rst | 8 +++++++- setup.py | 2 +- shotgun_api3/shotgun.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index c19b61fec..507fc25e4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,13 @@ Flow Production Tracking Python API Changelog Here you can see the full list of changes between each Python API release. -v3.8.5 (2025 Xxx X) +v3.8.6 (2025 Sep 10) +=================== + +- Removed Python 2 code. +- Removed six module. Note: review any custom code that may rely on six through python-api. + +v3.8.5 (2025 Jul 31) =================== - We don't want to retry on general exceptions (e.g. timeout or remote disconnection) diff --git a/setup.py b/setup.py index 9240486b5..63b7e2498 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name="shotgun_api3", - version="3.8.4", + version="3.8.6", description="Flow Production Tracking Python API", long_description=readme, author="Autodesk", diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index 128896cc7..1067b907c 100644 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -81,7 +81,7 @@ # ---------------------------------------------------------------------------- # Version -__version__ = "3.8.4" +__version__ = "3.8.6" # ---------------------------------------------------------------------------- # Errors From dea7f6cea9748be72e18b7390cc7124db6d9172a Mon Sep 17 00:00:00 2001 From: Eduardo Chauca Date: Wed, 10 Sep 2025 18:21:22 -0500 Subject: [PATCH 2/3] new version 3.9.0 --- HISTORY.rst | 4 ++-- setup.py | 2 +- shotgun_api3/shotgun.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 507fc25e4..58fbe39c7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,11 +4,11 @@ Flow Production Tracking Python API Changelog Here you can see the full list of changes between each Python API release. -v3.8.6 (2025 Sep 10) +v3.9.0 (2025 Sep 10) =================== - Removed Python 2 code. -- Removed six module. Note: review any custom code that may rely on six through python-api. +- Removed six module. Note: Please review if your code depends on six library included on this package. In this case you need to update your code as this is not supported anymore. v3.8.5 (2025 Jul 31) =================== diff --git a/setup.py b/setup.py index 63b7e2498..647661096 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name="shotgun_api3", - version="3.8.6", + version="3.9.0", description="Flow Production Tracking Python API", long_description=readme, author="Autodesk", diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index 1067b907c..67996c9f3 100644 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -81,7 +81,7 @@ # ---------------------------------------------------------------------------- # Version -__version__ = "3.8.6" +__version__ = "3.9.0" # ---------------------------------------------------------------------------- # Errors From 3ae112984f3462c7d21efcfa056759e518222a2f Mon Sep 17 00:00:00 2001 From: Eduardo Chauca Date: Wed, 10 Sep 2025 18:24:31 -0500 Subject: [PATCH 3/3] Note improved --- HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 58fbe39c7..30b68b792 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -8,7 +8,7 @@ v3.9.0 (2025 Sep 10) =================== - Removed Python 2 code. -- Removed six module. Note: Please review if your code depends on six library included on this package. In this case you need to update your code as this is not supported anymore. +- Removed the six module. Note: if your code depends on the six library previously included in this package, you will need to update it, as it is no longer supported. v3.8.5 (2025 Jul 31) ===================