From 29b4666205a563bbf0dddef93ecc3064f977bd4a Mon Sep 17 00:00:00 2001 From: Steve Atwell Date: Thu, 26 May 2022 07:05:04 -0700 Subject: [PATCH] Fix python_requires to support all versions of 3.7 This is the standard way to support "Python 3.7 and newer" and it also fixes use of borgmatic with some tools that do custom dependency resolution. E.g., using pex with --platform. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index edc5410d8..4461edd11 100644 --- a/setup.py +++ b/setup.py @@ -37,5 +37,5 @@ setup( 'colorama>=0.4.1,<0.5', ), include_package_data=True, - python_requires='>3.7.0', + python_requires='>=3.7', )