Drop support for Python 3.5. (#9622)

* Drop support for Python 3.5.

* Update setup.py
This commit is contained in:
Robert Nishihara
2020-07-23 19:26:06 -07:00
committed by GitHub
parent 3511b30283
commit 06c3518aa1
6 changed files with 14 additions and 24 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ logger = logging.getLogger(__name__)
# before these files have been created, so we have to move the files
# manually.
SUPPORTED_PYTHONS = [(3, 5), (3, 6), (3, 7), (3, 8)]
SUPPORTED_PYTHONS = [(3, 6), (3, 7), (3, 8)]
SUPPORTED_BAZEL = (3, 2, 0)
ROOT_DIR = os.path.dirname(__file__)