This is an automated email from the ASF dual-hosted git repository. skrawcz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/hamilton.git
commit 38ad70a320a35874f4e9d3ad97ee8b08c8c824be Author: Josh Markovic <[email protected]> AuthorDate: Wed Jan 7 23:13:34 2026 -0500 Expand to python 3.13 --- contrib/setup.py | 1 + ui/backend/setup.py | 1 + ui/sdk/pyproject.toml | 4 +++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/setup.py b/contrib/setup.py index 8fda7941..f325f977 100644 --- a/contrib/setup.py +++ b/contrib/setup.py @@ -80,6 +80,7 @@ setup( "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], # Note that this feature requires pep8 >= v9 and a version of setup tools greater than the # default version installed with virtualenv. Make sure to update your tools! diff --git a/ui/backend/setup.py b/ui/backend/setup.py index ff76d054..92999067 100644 --- a/ui/backend/setup.py +++ b/ui/backend/setup.py @@ -59,6 +59,7 @@ setup( "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], # Note that this feature requires pep8 >= v9 and a version of setup tools greater than the # default version installed with virtualenv. Make sure to update your tools! diff --git a/ui/sdk/pyproject.toml b/ui/sdk/pyproject.toml index 20f0fd83..3b457d90 100644 --- a/ui/sdk/pyproject.toml +++ b/ui/sdk/pyproject.toml @@ -20,7 +20,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" ] requires-python = ">=3.7, <4" dynamic = ["dependencies", "optional-dependencies", "version"]
