From 08eb63cea430316ce075c68f365e87c8ef0eea52 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 1 Dec 2020 13:21:06 -0500 Subject: [PATCH] setup: update Python version info Change-Id: I91056260d00215cfe9047d17664e3c3158c7bbcc Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/290502 Reviewed-by: Michael Mortensen Tested-by: Mike Frysinger --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f4d7728d..5aa15fe9 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding:utf-8 -*- # Copyright 2019 The Android Open Source Project # @@ -55,9 +55,10 @@ setuptools.setup( 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows :: Windows 10', 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3 :: Only', 'Topic :: Software Development :: Version Control :: Git', ], - # We support Python 2.7 and Python 3.6+. - python_requires='>=2.7, ' + ', '.join('!=3.%i.*' % x for x in range(0, 6)), + python_requires='>=3.6', packages=['subcmds'], )