1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 10:10:46 +00:00

setup.py: Add enum34 dependency for Python < 3.4

This commit is contained in:
Valentin Schneider 2018-11-13 13:24:09 +00:00 committed by Marc Bonnici
parent 5e13a045a3
commit 60c2e7721e

View File

@ -94,6 +94,7 @@ params = dict(
'pyserial', # Serial port interface 'pyserial', # Serial port interface
'wrapt', # Basic for construction of decorator functions 'wrapt', # Basic for construction of decorator functions
'future', # Python 2-3 compatibility 'future', # Python 2-3 compatibility
'enum34;python_version<"3.4"', # Enums for Python < 3.4
'pandas', 'pandas',
'numpy', 'numpy',
], ],