From 1b6124fe4ff6541893851c5c14ec948c8217b75f 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!) --- extensions/HuggingFace/python/pyproject.toml | 2 +- extensions/llama/python/pyproject.toml | 2 +- python/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/HuggingFace/python/pyproject.toml b/extensions/HuggingFace/python/pyproject.toml index 3cee174b9..fdddf59d1 100644 --- a/extensions/HuggingFace/python/pyproject.toml +++ b/extensions/HuggingFace/python/pyproject.toml @@ -11,7 +11,7 @@ authors = [ ] description = "An extension for using Hugging Face tasks to parse models for AIConfig." readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", diff --git a/extensions/llama/python/pyproject.toml b/extensions/llama/python/pyproject.toml index aa9917a3e..9f9e6ee5b 100644 --- a/extensions/llama/python/pyproject.toml +++ b/extensions/llama/python/pyproject.toml @@ -9,7 +9,7 @@ authors = [ ] description = "Model Parser extension for Llama" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.10" classifiers = [ "Intended Audience :: Developers", "Programming Language :: Python :: 3", 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",