From a77782facb9b16d94e31b94a1f257fc4dc7aa71e Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Mon, 3 Aug 2020 10:35:10 +0000 Subject: [PATCH] Set python_requires Newer versions of pip will check PyPI for python_requires metadata, helping to determine prior to package download if the local version of the interpreter is sufficiently new to support a given package version. Set ours to >= 3.5 for now. This should be increased any time support for an old interpreter release is dropped from the list in our trove classifiers. --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 9c9960e..a6d73f9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -44,6 +44,9 @@ classifier = Topic :: Games/Entertainment :: Role-Playing Topic :: Internet +[options] +python_requires = >=3.5 + [files] packages = mudpy -- 2.11.0