1
0

bump min required Python version to 3.8

This commit is contained in:
SomberNight
2022-02-08 12:43:04 +01:00
parent f02e3b9d99
commit dd2f8541b7
5 changed files with 9 additions and 11 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.6.1"
MIN_PYTHON_VERSION = "3.8.0"
_min_python_version_tuple = tuple(map(int, (MIN_PYTHON_VERSION.split("."))))