Skip to content

Commit 55221ae

Browse files
committed
setup: Declare supported Python versions (2.4-2.7, 3.6+)
(cherry picked from commit 0a28549)
1 parent 705314c commit 55221ae

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,24 @@ def grep_version():
4848
license = 'New BSD',
4949
url = 'https://github.com/mitogen-hq/mitogen/',
5050
packages = find_packages(exclude=['tests', 'examples']),
51+
python_requires='>=2.4, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
5152
zip_safe = False,
5253
classifiers = [
5354
'Environment :: Console',
5455
'Intended Audience :: System Administrators',
5556
'License :: OSI Approved :: BSD License',
5657
'Operating System :: POSIX',
5758
'Programming Language :: Python',
59+
'Programming Language :: Python :: 2',
5860
'Programming Language :: Python :: 2.4',
5961
'Programming Language :: Python :: 2.5',
6062
'Programming Language :: Python :: 2.6',
6163
'Programming Language :: Python :: 2.7',
64+
'Programming Language :: Python :: 3',
6265
'Programming Language :: Python :: 3.6',
66+
'Programming Language :: Python :: 3.7',
67+
'Programming Language :: Python :: 3.8',
68+
'Programming Language :: Python :: 3.9',
6369
'Programming Language :: Python :: Implementation :: CPython',
6470
'Topic :: System :: Distributed Computing',
6571
'Topic :: System :: Systems Administration',

0 commit comments

Comments
 (0)