Tell installers that Mopidy requires Python 2.7

This is supported by pip >= 9.0.1, and will help Python 2 users stay at the last Python 2-compatible Mopidy release after we make the first Python 3-only release.
This commit is contained in:
Stein Magnus Jodal 2017-07-28 14:47:18 +02:00 committed by GitHub
parent 1ac0674658
commit 33856830c9

View File

@ -23,6 +23,7 @@ setup(
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=False,
include_package_data=True,
python_requires='>= 2.7, < 3',
install_requires=[
'Pykka >= 1.1',
'requests >= 2.0',