File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ classifiers =
16
16
Intended Audience :: Developers
17
17
Programming Language :: Python :: 3
18
18
Programming Language :: Python :: 3 :: Only
19
+ Programming Language :: Python :: 3.6
20
+ Programming Language :: Python :: 3.7
21
+ Programming Language :: Python :: 3.8
22
+ Programming Language :: Python :: 3.9
23
+ Programming Language :: Python :: 3.10
19
24
Topic :: Software Development
20
25
Topic :: Utilities
21
26
@@ -49,7 +54,6 @@ install_requires =
49
54
attrs
50
55
packageurl-python
51
56
requests
52
- six
53
57
54
58
55
59
[options.packages.find]
Original file line number Diff line number Diff line change 34
34
import attr
35
35
from packageurl import normalize_qualifiers
36
36
from packageurl import PackageURL
37
- from six import string_types
38
37
39
38
from fetchcode .commoncode_datautils import choices
40
39
from fetchcode .commoncode_datautils import Boolean
@@ -89,7 +88,7 @@ def logger_debug(*args):
89
88
logger .setLevel (logging .DEBUG )
90
89
91
90
def logger_debug (* args ):
92
- return logger .debug (' ' .join (isinstance (a , string_types ) and a or repr (a ) for a in args ))
91
+ return logger .debug (' ' .join (isinstance (a , str ) and a or repr (a ) for a in args ))
93
92
94
93
95
94
class BaseModel (object ):
You can’t perform that action at this time.
0 commit comments