aboutsummaryrefslogtreecommitdiff
path: root/absl/testing
diff options
context:
space:
mode:
authorYilei Yang <yileiyang@google.com>2021-10-25 16:01:56 -0700
committerCopybara-Service <copybara-worker@google.com>2021-10-25 16:02:26 -0700
commitaccabc2cdc7a4db7d32850ea67f14b22db0957a9 (patch)
tree64ac5859832c14c1b18f088096e8bffa7bb64e30 /absl/testing
parent76890b62abfff57c01dc4ce2e8e1781439808e8f (diff)
downloadabsl-py-accabc2cdc7a4db7d32850ea67f14b22db0957a9.tar.gz
Drop the support of Python 2.7, 3.4, and 3.5. All versions have reached end-of-life for more than a year now.
PiperOrigin-RevId: 405511743 Change-Id: Id0f78693a6de9474576c3cfa879caf2cc177d8f6
Diffstat (limited to 'absl/testing')
-rw-r--r--absl/testing/BUILD1
-rw-r--r--absl/testing/absltest.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/absl/testing/BUILD b/absl/testing/BUILD
index 14c9a5f..4ed9126 100644
--- a/absl/testing/BUILD
+++ b/absl/testing/BUILD
@@ -30,7 +30,6 @@ py_library(
":_pretty_print_reporter",
":xml_reporter",
"//absl:_collections_abc",
- "//absl:_enum_module",
"//absl:app",
"//absl/flags",
"//absl/logging",
diff --git a/absl/testing/absltest.py b/absl/testing/absltest.py
index a79cde7..39fa1c9 100644
--- a/absl/testing/absltest.py
+++ b/absl/testing/absltest.py
@@ -24,6 +24,7 @@ from __future__ import print_function
import contextlib
import difflib
+import enum
import errno
import getpass
import inspect
@@ -57,7 +58,6 @@ from absl import app
from absl import flags
from absl import logging
from absl._collections_abc import abc
-from absl._enum_module import enum
from absl.testing import _pretty_print_reporter
from absl.testing import xml_reporter
from absl.third_party import unittest3_backport