File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed
azure-pipelines-templates Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ Flow Production Tracking Python API Changelog
44
55Here you can see the full list of changes between each Python API release.
66
7+ v3.10.0 (2026 Feb 3)
8+ ====================
9+
10+ - Add support for Python 3.13.
11+
712v3.9.2 (2025 Dec 10)
813====================
914
Original file line number Diff line number Diff line change 6969 targetType : inline
7070 script : |
7171 set -e
72- pip install --upgrade pip
73- pip install --upgrade setuptools wheel
74- pip install --upgrade --requirement tests/requirements.txt
72+ python -m pip install --upgrade pip
73+ python -m pip install --upgrade setuptools wheel
74+ python -m pip install --upgrade --requirement tests/requirements.txt
75+ # Need to use the "python -m" prefix to make Windows happy.
7576
7677 # The {{}} syntax is meant for the the pre-processor of Azure pipeline. Every statement inside
7778 # a {{}} block will be evaluated and substituted before the file is parsed to create the jobs.
Original file line number Diff line number Diff line change 2020
2121setup (
2222 name = "shotgun_api3" ,
23- version = "3.9.2 " ,
23+ version = "3.10.0 " ,
2424 description = "Flow Production Tracking Python API" ,
2525 long_description = readme ,
2626 author = "Autodesk" ,
Original file line number Diff line number Diff line change 9393
9494# ----------------------------------------------------------------------------
9595# Version
96- __version__ = "3.9.2 "
96+ __version__ = "3.10.0 "
9797
9898
9999# ----------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments