From c343d6687bb8ca36adde642e1bca5963e95948c0 Mon Sep 17 00:00:00 2001 From: gclen Date: Sat, 24 Aug 2019 16:03:02 -0400 Subject: [PATCH] Remove typing module since it is part of standard library from 3.6 and can throw errors on 3.7 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3ace0dc..f2898b8 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ install_requires = ['python-dateutil', 'cchardet', - 'typing' + 'typing; python_version < "3.5"' ] setuptools.setup(name='eml_parser',