jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/434270 )
Change subject: [doc] Add keyword parameter "python_requires" to setup ......................................................................
[doc] Add keyword parameter "python_requires" to setup
Also add CPython to setup classifiers
Change-Id: I2f3f05bc1571be3c47fb988fa9338cd1d5a01b67 --- M setup.py 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: Dalba: Looks good to me, approved jenkins-bot: Verified
diff --git a/setup.py b/setup.py index 4889c42..3e6dd14 100644 --- a/setup.py +++ b/setup.py @@ -220,6 +220,7 @@ packages=[str(name)] + [package for package in find_packages() if package.startswith('pywikibot.')], + python_requires='>=2.7.2, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', install_requires=dependencies, dependency_links=dependency_links, extras_require=extra_deps, @@ -241,6 +242,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Utilities',
pywikibot-commits@lists.wikimedia.org