From 2d589227c270d11f13363c819024baeaad97bdec Mon Sep 17 00:00:00 2001 From: Gianluca Rossi Date: Sun, 24 Mar 2024 10:08:16 -0400 Subject: [PATCH] fix: include support python 3.8 in pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d673066..c581e53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [project] -requires-python = ">3.8" +requires-python = ">=3.8" name = "blazingai" version = "2.0.0" description = "A framework to accelerate AI development" authors = [{name= "Gianluca Rossi" , email= "gr.gianlucarossi@gmail.com" }] license = {file = "LICENSE"} -readme = "README.md" +readme = {file = "README.md"} dependencies = [ "scipy>=1.9.3", "loguru>=0.6.0",