Python < 3.5 cleanups (#180)

* tox: remove Python < 3.5 config

* deps: drop typing, included in Python 3.5+
This commit is contained in:
Ville Skyttä 2019-08-13 23:55:18 +03:00 committed by Teemu R
parent c9280c70c0
commit 752b24c4ec
2 changed files with 2 additions and 4 deletions

View File

@ -8,7 +8,7 @@ setup(name='pyHS100',
author_email='sean@gadgetreactor.com',
license='GPLv3',
packages=['pyHS100'],
install_requires=['click', 'typing', 'deprecation'],
install_requires=['click', 'deprecation'],
python_requires='>=3.5',
entry_points={
'console_scripts': [

View File

@ -1,10 +1,8 @@
[tox]
envlist=py33,py34,py35,py36,py37,flake8
envlist=py35,py36,py37,flake8
skip_missing_interpreters = True
[tox:travis]
3.3 = py33
3.4 = py34
3.5 = py35
3.6 = py36
3.7 = py37