Skip to content

Commit 24fa0e1

Browse files
Packaging for v3.9.1 (#428)
1 parent a567589 commit 24fa0e1

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

HISTORY.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.9.1 (2025 Nov 25)
8+
====================
9+
10+
- Removed the deprecated ``CACertsHTTPSConnection`` class, which was no longer needed after dropping Python 2 support.
11+
- Added basic type annotations throughout the package to improve IDE support and code completion. Note: Some typing improvements are still in progress and will be refined in future releases. Special thanks to @chadrik for this contribution!
12+
- Introduced a new environment variable ``SHOTGUN_ALLOW_OLD_PYTHON`` to temporarily bypass Python version warnings for users still on Python 3.7 or 3.8. While this provides flexibility during transition, we strongly recommend upgrading to Python 3.9 or newer for continued support and security updates.
13+
- Enhanced payload optimization for entity dictionaries, making it more flexible and preventing potential issues when working with special fields like ``type`` and ``url``.
14+
- Updated attachment documentation with detailed information about the ``relative_path`` field and its usage.
15+
- Python versions older than 3.9 are now deprecated. A runtime warning will be displayed during initialization if you're using Python 3.7 or 3.8. Please plan to upgrade to Python 3.9 or newer as these older versions will not be supported in future releases.
16+
717
v3.9.0 (2025 Sep 10)
818
====================
919

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.9.0",
23+
version="3.9.1",
2424
description="Flow Production Tracking Python API",
2525
long_description=readme,
2626
author="Autodesk",

shotgun_api3/shotgun.py

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

9595
# ----------------------------------------------------------------------------
9696
# Version
97-
__version__ = "3.9.0"
97+
__version__ = "3.9.1"
9898

9999

100100
# ----------------------------------------------------------------------------

0 commit comments

Comments
 (0)