From 90771f31a41021f9b077815a55d75161f4665e26 Mon Sep 17 00:00:00 2001 From: James Adams Date: Sat, 1 Feb 2020 10:59:46 -0500 Subject: [PATCH] updated the setup.py file to use Python versions 3.6 and 3.7 #53 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5fcb717..c40409e 100644 --- a/setup.py +++ b/setup.py @@ -15,12 +15,13 @@ long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/monocongo/cvdata", - python_requires=">=3.7", + python_requires=">=3.6,<3.8", provides=[ "cvdata", ], classifiers=[ "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Operating System :: OS Independent", ],