File tree Expand file tree Collapse file tree 4 files changed +6
-18
lines changed Expand file tree Collapse file tree 4 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,8 @@ language: python
2
2
dist : xenial
3
3
4
4
python :
5
- - " 2.7"
6
- - " 3.4"
7
- - " 3.5"
8
- - " 3.6"
9
5
- " 3.7"
10
- # - "3.8-dev" # TODO Remove comment-out when pylint and astroid upgraded to the latest and py2 support dropped
6
+ - " 3.8"
11
7
12
8
install :
13
9
- pip install tox-travis
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ httpretty = "~=0.9"
21
21
python-dateutil = " ~=2.8"
22
22
mock = " ~=3.0"
23
23
24
- # TODO Update to the latest ver when py2 support dropped
25
- pylint = " ~=1.9"
26
- astroid = " ~=1.6"
24
+ pylint = " ~=2.4"
25
+ astroid = " ~=2.3"
27
26
isort = " ~=4.3"
Original file line number Diff line number Diff line change 37
37
packages = find_packages (include = ['appium*' ]),
38
38
license = 'Apache 2.0' ,
39
39
classifiers = [
40
- 'Development Status :: 4 - Beta ' ,
40
+ 'Development Status :: 5 - Production/Stable ' ,
41
41
'Programming Language :: Python' ,
42
- 'Programming Language :: Python :: 2.7' ,
43
- 'Programming Language :: Python :: 3.4' ,
44
- 'Programming Language :: Python :: 3.5' ,
45
- 'Programming Language :: Python :: 3.6' ,
46
42
'Programming Language :: Python :: 3.7' ,
43
+ 'Programming Language :: Python :: 3.8' ,
47
44
'Environment :: Console' ,
48
45
'Environment :: MacOS X' ,
49
46
'Environment :: Win32 (MS Windows)' ,
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
skipsdist = True
3
3
envlist =
4
- py27,
5
- py34,
6
- py35,
7
- py36,
8
4
py37,
9
- # py38 # TODO Remove comment-out when pylint and astroid upgraded to the latest and py2 support dropped
5
+ py38
10
6
11
7
[testenv]
12
8
deps =
You can’t perform that action at this time.
0 commit comments