浏览代码

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.
Steve Atwell 3 年之前
父节点
当前提交
29b4666205
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      setup.py

+ 1 - 1
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',
 )