Skip to content

Commit 85ee8a4

Browse files
committed
Start to remove python 2 support
1 parent 9ec4730 commit 85ee8a4

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ sudo: false
55

66
matrix:
77
include:
8-
- python: '2.7'
98
- python: '3.5'
109
- python: '3.6'
1110
- python: '3.7'

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Alternatively, clone this repository and run `python setup.py install`.
3838

3939
# Dependencies
4040

41-
- Python 2.7 - 3.x
41+
- Python 3.x
4242
- **[Requests](https://github.com/kennethreitz/requests)** >= 2.9.2
4343
- **[requests_toolbelt](https://pypi.org/project/requests-toolbelt/)** >= 0.9.1
4444

@@ -568,4 +568,4 @@ print(
568568
shell=True
569569
)
570570
)
571-
```
571+
```

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,11 @@
4444
'License :: OSI Approved :: MIT License',
4545
'Operating System :: OS Independent',
4646
'Programming Language :: Python',
47-
'Programming Language :: Python :: 2',
48-
'Programming Language :: Python :: 2.7',
4947
'Programming Language :: Python :: 3',
5048
'Programming Language :: Python :: 3.5',
5149
'Programming Language :: Python :: 3.6',
5250
'Programming Language :: Python :: 3.7',
51+
'Programming Language :: Python :: 3.8',
5352
'Topic :: Internet :: WWW/HTTP',
5453
'Topic :: Software Development :: Libraries :: Application Frameworks',
5554
'Topic :: Software Development :: Libraries :: Python Modules'

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[tox]
2-
envlist = py27, py35, py36, py37
2+
envlist = py35, py36, py37
33
skip_missing_interpreters = true
44

5-
65
[testenv]
76
deps =
87
-rrequirements.txt

0 commit comments

Comments
 (0)