From fba8cc7faf83be9f1505625d566721ee6c68ed39 Mon Sep 17 00:00:00 2001 From: Jamie Lennox Date: Thu, 28 Mar 2024 10:38:30 +0700 Subject: [PATCH] Add python_requires>=3.5 We no longer support python2, but this is the only way i've found to say that the package can only be installed on python 3. 3.5 is somewhat of an arbitrary value, but I don't want to go perfectly recent. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 2b775d6..a21dedb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -28,6 +28,7 @@ classifiers = [options] packages = requests_mock include_package_data = true +python_requires = >=3.5 install_requires = requests>=2.22,<3