ppannuto / python-saleae

Python library to control a Saleae Logic Analyzer
Apache License 2.0
124 stars 55 forks source link

Fix enum34 not required for Python 3.4 and above #60

Closed kblomqvist closed 4 years ago

kblomqvist commented 4 years ago

Modify requirements in setup.py to not install enum34 when not needed. Reason: enum34 is a backport of Python 3.4 Enum for Python 3.3 and older so installing it for Python 3.4 and above can cause issues with other packages using the enum. Closes #57

ppannuto commented 4 years ago

Makes sense to me -- thanks!