From 50bc33f662a5bfe1a9c05310733db8b0c9c5c5f1 Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Fri, 23 Sep 2022 13:04:00 +0200 Subject: [PATCH] Declare the oldest supported Python version. (As Py37) As suggested in https://github.com/hpyproject/hpy/issues/307#issuecomment-1226993815 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 0c3f3fece..1e7efd6f1 100644 --- a/setup.py +++ b/setup.py @@ -163,4 +163,5 @@ def get_scm_config(): use_scm_version=get_scm_config, setup_requires=['setuptools_scm'], install_requires=['setuptools>=64.0'], + python_requires='>=3.7', )