diff options
author | Mike Frysinger <vapier@google.com> | 2020-12-01 13:21:06 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@google.com> | 2020-12-01 19:29:43 +0000 |
commit | 08eb63cea430316ce075c68f365e87c8ef0eea52 (patch) | |
tree | a32cc6ee5ae1c3112209c036fb3740026c641f35 | |
parent | 352c93b68084e97ec7a3c09f0bd3f2a161290211 (diff) | |
download | git-repo-08eb63cea430316ce075c68f365e87c8ef0eea52.tar.gz |
setup: update Python version info
Change-Id: I91056260d00215cfe9047d17664e3c3158c7bbcc
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/290502
Reviewed-by: Michael Mortensen <mmortensen@google.com>
Tested-by: Mike Frysinger <vapier@google.com>
-rwxr-xr-x | setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | #!/usr/bin/env python | 1 | #!/usr/bin/env python3 |
2 | # -*- coding:utf-8 -*- | 2 | # -*- coding:utf-8 -*- |
3 | # Copyright 2019 The Android Open Source Project | 3 | # Copyright 2019 The Android Open Source Project |
4 | # | 4 | # |
@@ -55,9 +55,10 @@ setuptools.setup( | |||
55 | 'Operating System :: MacOS :: MacOS X', | 55 | 'Operating System :: MacOS :: MacOS X', |
56 | 'Operating System :: Microsoft :: Windows :: Windows 10', | 56 | 'Operating System :: Microsoft :: Windows :: Windows 10', |
57 | 'Operating System :: POSIX :: Linux', | 57 | 'Operating System :: POSIX :: Linux', |
58 | 'Programming Language :: Python :: 3', | ||
59 | 'Programming Language :: Python :: 3 :: Only', | ||
58 | 'Topic :: Software Development :: Version Control :: Git', | 60 | 'Topic :: Software Development :: Version Control :: Git', |
59 | ], | 61 | ], |
60 | # We support Python 2.7 and Python 3.6+. | 62 | python_requires='>=3.6', |
61 | python_requires='>=2.7, ' + ', '.join('!=3.%i.*' % x for x in range(0, 6)), | ||
62 | packages=['subcmds'], | 63 | packages=['subcmds'], |
63 | ) | 64 | ) |