Skip to content

Commit 24dfce6

Browse files
authored
SG-41624 Packaging for v3.10.0 (#440)
1 parent 1fb626f commit 24dfce6

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ 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.10.0 (2026 Feb 3)
8+
====================
9+
10+
- Add support for Python 3.13.
11+
712
v3.9.2 (2025 Dec 10)
813
====================
914

azure-pipelines-templates/run-tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,10 @@ jobs:
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.

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.2",
23+
version="3.10.0",
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
@@ -93,7 +93,7 @@
9393

9494
# ----------------------------------------------------------------------------
9595
# Version
96-
__version__ = "3.9.2"
96+
__version__ = "3.10.0"
9797

9898

9999
# ----------------------------------------------------------------------------

0 commit comments

Comments
 (0)