From 9abb5884b7a2cc735be5600b620eb79a126002c8 Mon Sep 17 00:00:00 2001 From: Hugo Date: Sat, 9 Dec 2017 22:54:12 +0200 Subject: [PATCH] Update python_requires to 2.7.10+ Update python_requires to specify the exact x.y.z 2.7.10 version required. (From HTTPS changes in #178.) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 99fa123..6b164c6 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ], - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + python_requires='>=2.7.10, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', keywords=["Last.fm", "music", "scrobble", "scrobbling"], packages=find_packages(exclude=('tests*',)), license="Apache2"