only older not equals

we do not want to depend on these if python is version 3.4
we only want to depend on these if python is older than 3.4
delete the equals.
This commit is contained in:
Marcel Fest
2018-04-06 12:24:51 +02:00
committed by Stephen Fuhry
parent c72b431b96
commit 6c71391a4e

View File

@@ -32,7 +32,7 @@ _doc_requires = [
'sphinx-better-theme'
]
if sys.version_info[:2] <= (3, 4):
if sys.version_info[:2] < (3, 4):
# only depend on enum34 and singledispatch if Python is older than 3.4
_requires += ['singledispatch']
_requires += ['enum34']