Skip to content

Commit

Permalink
Don’t require typing with Python 3.5 and newer
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 committed Nov 18, 2017
1 parent bd5e346 commit 5077da5
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 5077da5

Please sign in to comment.