1
0

bump min required Python version to 3.10

This commit is contained in:
SomberNight
2025-01-10 13:16:04 +00:00
parent 3aac8ff0b8
commit fb5a1af666
5 changed files with 12 additions and 14 deletions

View File

@@ -12,7 +12,7 @@ import subprocess
from setuptools import setup, find_packages
from setuptools.command.install import install
MIN_PYTHON_VERSION = "3.8.0"
MIN_PYTHON_VERSION = "3.10.0"
_min_python_version_tuple = tuple(map(int, (MIN_PYTHON_VERSION.split("."))))