1
0
mirror of https://github.com/JoelBender/bacpypes synced 2025-09-28 22:15:23 +08:00

Fix setup.py for Python 3.6

This commit is contained in:
Christian Bergmiller 2017-12-13 09:27:14 +01:00
parent 2b5d6c2ade
commit 8e09388fe1

View File

@ -18,6 +18,7 @@ source_folder = {
(2, 7): 'py27',
(3, 4): 'py34',
(3, 5): 'py34',
(3, 6): 'py34',
}.get(version_info, None)
if not source_folder:
raise EnvironmentError("unsupported version of Python")
@ -75,6 +76,7 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
setup_requires=setup_requirements,