From 7dc256f8aa39b7fd17fb1e31f96f20afca7b3589 Mon Sep 17 00:00:00 2001 From: Sahil Wankhede Date: Fri, 14 Nov 2025 10:26:47 -0500 Subject: [PATCH] 688299: Dev - Add the support for Python v3.13 to the SDK --- pyproject.toml | 4 +++- tox.ini | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 737c6fa..0a44ae0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,9 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11" + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13" ] description-file = "README.md" requires = [ diff --git a/tox.ini b/tox.ini index 2420de2..d159c1a 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,7 @@ # Docs for tox config -> https://tox.readthedocs.io/en/latest/config.html [tox] -envlist = 3.8, 3.9, 3.10, 3.11, 3.12 +envlist = 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 isolated_build = True skipsdist = True