From 748363e685c10489f729f874c69f100969dba374 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 19 Oct 2023 16:21:32 -0700 Subject: [PATCH] Bump required Python version to 3.9 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 46310ef3..6f1848d7 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ PACKAGE_DIR = ROOT_DIR / PKG_NAME README = (PACKAGE_DIR / "README.md").read_text(encoding='utf-8', errors='ignore') VERSION = json.loads((PACKAGE_DIR / "package.json").read_text().strip())['version'] -PYTHON_REQUIRES = ">=3.7" +PYTHON_REQUIRES = ">=3.9" SETUP_REQUIRES = ["wheel"] INSTALL_REQUIRES = [ # only add things here that have corresponding apt python3-packages available