tests: remove aenum library 45/30245/1
authorPaul Vinciguerra <pvinci@vinciconsulting.com>
Thu, 3 Dec 2020 05:46:03 +0000 (00:46 -0500)
committerPaul Vinciguerra <pvinci@vinciconsulting.com>
Thu, 3 Dec 2020 05:46:03 +0000 (00:46 -0500)
the aenum library was used to provide intflag functionality
for python versions earlier than 3.6

Type: test

Change-Id: I914d390ee5364f337006c1c59abafe4b9a3c1bde
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
test/remote_test.py
test/requirements.txt

index 8b3def2..ea271d5 100644 (file)
@@ -10,10 +10,7 @@ import six
 from six import moves
 import sys
 
-if sys.version_info < (3,):
-    from aenum import IntEnum, IntFlag
-else:
-    from enum import IntEnum, IntFlag
+from enum import IntEnum, IntFlag
 
 
 class SerializableClassCopy(object):
index e934bc0..017c7a9 100644 (file)
@@ -1,6 +1,5 @@
 pip-tools==5.1.2                        # BSD   Keep this in sync with Makefile's PIP_TOOLS_VERSION
 
-aenum>= 2.1.2; python_version < '3.6'   # BSD
 cffi                                    # MIT
 cryptography!=2.0                       # BSD/Apache-2.0
 deprecation>=2.0.6                      # Apache-2.0