Skip to content

Commit 98c7c5e

Browse files
authored
Merge pull request #174 from eigenein/master
Fix: install `typing` for tests on Python 3.4
2 parents 677fb91 + d0ec128 commit 98c7c5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
packages=find_packages(),
1919
install_requires=['six'],
2020
extras_require=dict(
21-
tests=('pytest', 'mock'),
21+
tests=('typing; python_version < "3.5"', 'pytest', 'mock'),
2222
),
2323
zip_safe=True,
2424
classifiers=(

0 commit comments

Comments
 (0)