Skip to content

Commit 18ad25f

Browse files
committed
get rid of six; py3 only now
1 parent a138d2f commit 18ad25f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

ipinfo/cache/interface.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@
33
"""
44

55
import abc
6-
import six
76

87

9-
@six.add_metaclass(abc.ABCMeta)
10-
class CacheInterface():
8+
class CacheInterface(metaclass=abc.ABCMeta):
119
"""Interface for using custom cache."""
1210

1311
@abc.abstractmethod

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
author_email="[email protected]",
1919
license="Apache License 2.0",
2020
packages=["ipinfo", "ipinfo.cache"],
21-
install_requires=["requests", "cachetools", "six"],
21+
install_requires=["requests", "cachetools"],
2222
include_package_data=True,
2323
zip_safe=False,
2424
)

0 commit comments

Comments
 (0)