From 286991950707ee3bb674b0749c3141de74b3d14e Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 30 Jan 2025 11:55:17 +0300 Subject: [PATCH] pyproject.toml: minimum Python version is 3.10 Apparently this is due to ipython. --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ea5d8b2..c196e02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,13 +18,12 @@ dependencies = [ "py3langid~=0.3", ] readme = "README.md" -requires-python = ">= 3.9" +requires-python = ">= 3.10" classifiers = [ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12",