From a0a975bc26728996313425ad4ba8b1281849153c Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sun, 9 Dec 2018 11:25:39 -0800 Subject: [PATCH] setup.py now requires python 3.4 or greater. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5b855e18..d75614d0 100755 --- a/setup.py +++ b/setup.py @@ -62,15 +62,13 @@ direct manipulation of DNS zones, messages, names, and records.""", "Programming Language :: Python", "Topic :: Internet :: Name Service (DNS)", "Topic :: Software Development :: Libraries :: Python Modules", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", ], - 'python_requires': '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + 'python_requires': '>=3.4', 'test_suite': 'tests', 'provides': ['dns'], 'extras_require': { -- 2.47.3