Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ sudo: required
services:
- docker
python:
- '2.7'
- '3.5'
- '3.6'
install:
- pip install mypy
- pip install mypy pycodestyle
- pip install .
script:
- pycodestyle src
- mypy src --ignore-missing-imports
notifications:
email: false
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
python_requires='>=2.7',
python_requires='>=3.5',
install_requires=[
'requests>=2.0.0',
'typing>=0.4.1'
Expand Down
Loading