Skip to content

Commit

Permalink
Don’t require typing with Python 3.5 and newer (#123)
Browse files Browse the repository at this point in the history
Python 3.5 and newer ship with built-in typing support. For this reason,
there is no need to require the typing package starting from Python 3.5.
  • Loading branch information
pluehne authored and rytilahti committed Nov 18, 2017
1 parent 62e82aa commit 5f4e8b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
'click',
'cryptography',
'pretty_cron',
'typing',
'typing; python_version < "3.5"',
'zeroconf',
'pycrypto',
'attrs',
Expand Down

0 comments on commit 5f4e8b1

Please sign in to comment.