Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ language: python
dist: xenial

python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
# - "3.8-dev" # TODO Remove comment-out when pylint and astroid upgraded to the latest and py2 support dropped
- "3.8"

install:
- pip install tox-travis
Expand Down
5 changes: 2 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ httpretty = "~=0.9"
python-dateutil = "~=2.8"
mock = "~=3.0"

# TODO Update to the latest ver when py2 support dropped
pylint = "~=1.9"
astroid = "~=1.6"
pylint = "~=2.4"
astroid = "~=2.3"
isort = "~=4.3"
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,10 @@
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[tox]
skipsdist = True
envlist =
py27,
py34,
py35,
py36,
py37,
# py38 # TODO Remove comment-out when pylint and astroid upgraded to the latest and py2 support dropped
py38

[testenv]
deps =
Expand Down