1
0

linux sdist: 'typing' was not included, which is needed on py3.4

not making typing conditioned on py version as then freeze_packages would not pick it up.
This commit is contained in:
SomberNight
2018-07-20 16:38:18 +02:00
parent f7dce426cb
commit 281805a0a4
3 changed files with 5 additions and 3 deletions

View File

@@ -43,7 +43,6 @@ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
extras_require = {
'hardware': requirements_hw,
'fast': ['pycryptodomex'],
':python_version < "3.5"': ['typing>=3.0.0'],
}
extras_require['full'] = extras_require['hardware'] + extras_require['fast']