Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Flow Production Tracking Python API Changelog

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

v3.10.0 (2026 Feb 3)
====================

- Add support for Python 3.13.

v3.9.2 (2025 Dec 10)
====================

Expand Down
7 changes: 4 additions & 3 deletions azure-pipelines-templates/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ jobs:
targetType: inline
script: |
set -e
pip install --upgrade pip
pip install --upgrade setuptools wheel
pip install --upgrade --requirement tests/requirements.txt
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install --upgrade --requirement tests/requirements.txt
# Need to use the "python -m" prefix to make Windows happy.

# The {{}} syntax is meant for the the pre-processor of Azure pipeline. Every statement inside
# a {{}} block will be evaluated and substituted before the file is parsed to create the jobs.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name="shotgun_api3",
version="3.9.2",
version="3.10.0",
description="Flow Production Tracking Python API",
long_description=readme,
author="Autodesk",
Expand Down
2 changes: 1 addition & 1 deletion shotgun_api3/shotgun.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@

# ----------------------------------------------------------------------------
# Version
__version__ = "3.9.2"
__version__ = "3.10.0"


# ----------------------------------------------------------------------------
Expand Down
Loading