add dataclasses dependency for python<3.7
This commit is contained in:
parent
1d0ef82d32
commit
d7abff03fc
1 changed files with 5 additions and 1 deletions
6
setup.py
6
setup.py
|
@ -60,7 +60,11 @@ def main():
|
||||||
# TODO document these?
|
# TODO document these?
|
||||||
'logzero',
|
'logzero',
|
||||||
'cachew',
|
'cachew',
|
||||||
]
|
],
|
||||||
|
':python_version<"3.7"': [
|
||||||
|
# used for some modules... hopefully reasonable to have it as a default
|
||||||
|
'dataclasses',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue