Skip to content

Commit 46206c1

Browse files
authored
Merge pull request #452 from maxchill/develop
Make typing dependency conditional < python 3.5
2 parents bf56c58 + eb8ee51 commit 46206c1

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
@@ -100,7 +100,7 @@
100100
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3",
101101
install_requires=[
102102
'wrapt~=1.10',
103-
'typing',
103+
'typing;python_version<"3.5"',
104104
'windows-curses;platform_system=="Windows"',
105105
],
106106
extras_require=extras_require,

0 commit comments

Comments
 (0)