From c06d792a84dc6a34ab09c7f90c3e9d9feb314eea Mon Sep 17 00:00:00 2001 From: Aryan Roy Date: Tue, 8 Oct 2024 19:42:30 +0530 Subject: [PATCH] fix python version support Signed-off-by: Aryan Roy --- pyproject.toml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cdb3ea9..a217fbf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ maintainers = [ ] description = " Easy conversions between different styles of expressions" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.10" classifiers = [ "Development Status :: 1 - Planning", "Intended Audience :: Science/Research", @@ -19,19 +19,15 @@ classifiers = [ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", "Typing :: Typed", ] dynamic = ["version"] dependencies = [ - "typing_extensions >=3.7", "lark", + "typing_extensions >=3.10", ] [project.optional-dependencies]