From aee73b32e00e992d89859d8f5d31de0bccbba429 Mon Sep 17 00:00:00 2001 From: rht Date: Fri, 3 Apr 2020 08:12:31 -0400 Subject: [PATCH] zulip/setup.py: Remove Python 2 from supported versions. --- zulip/setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/zulip/setup.py b/zulip/setup.py index 659b541..7e161be 100755 --- a/zulip/setup.py +++ b/zulip/setup.py @@ -38,15 +38,13 @@ package_info = dict( 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Topic :: Communications :: Chat', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', ], - python_requires='>=2.7,!=3.0.x,!=3.1.x,!=3.2.x,!=3.3.x,!=3.4.x', + python_requires='>=3.5', url='https://www.zulip.org/', data_files=list(recur_expand('share/zulip', 'integrations')), include_package_data=True,