avast / pe_tools

A cross-platform Python toolkit for parsing/writing PE files.
MIT License
62 stars 13 forks source link

Add missing six dependency #2

Closed akx closed 4 years ago

akx commented 4 years ago

six is required by version_info.py and rsrc.py, but not declared as an install dependency.

It'd probably be better to just drop the six requirement altogether since Python 2 is EOL and the codebase uses Py3-isms throughout.

avakar commented 4 years ago

Thank you!