From 6533b2dfc5b2842143325ab90dde09a249e07811 Mon Sep 17 00:00:00 2001 From: "Rossdan Craig rossdan@lastmileai.dev" <> Date: Tue, 6 Feb 2024 15:17:03 -0500 Subject: [PATCH] Changing all pyproject `requires-python` to 3.10 We have some libraries like `TypeAlias` that require Python 3.10, as flagged by https://github.com/lastmile-ai/aiconfig/issues/1143 We're just going to be consistent for all extensions (even the ones that don't use the 3.10 libraries). I'm also going to re-publish and build the libraries (and includes this in the release notes!) --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 2facb74d4..0ff531171 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -9,7 +9,7 @@ authors = [ ] description = "Python library for LastMile AI API" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.10" classifiers = [ "Intended Audience :: Developers", "Programming Language :: Python :: 3",