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.
This commit is contained in:
Steve Atwell 2022-05-26 07:05:04 -07:00
parent 316a22701f
commit 29b4666205
1 changed files with 1 additions and 1 deletions

View File

@ -37,5 +37,5 @@ setup(
'colorama>=0.4.1,<0.5',
),
include_package_data=True,
python_requires='>3.7.0',
python_requires='>=3.7',
)