Skip to content

Commit 1482244

Browse files
eumirophibos
authored andcommitted
Drop Python 2.7 support
1 parent 35b65ce commit 1482244

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "pypy2", "pypy3"]
12+
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy3"]
1313
os: ["ubuntu-latest", "macos-latest"]
1414

1515
steps:

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
language: python
22
sudo: false
33
python:
4-
- "2.7"
54
- "3.6"
65
- "3.7"
76
- "3.8"
87
- "3.9"
9-
- "pypy2"
108
- "pypy3"
119

1210
before_install:

README.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ Install
3333

3434
Supported Python versions:
3535

36-
* Python 2.7
37-
* Python >= 3.2
38-
* PyPy and PyPy3
36+
* Python >= 3.6
37+
* PyPy3
3938

4039
**Install:**
4140

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"License :: OSI Approved :: MIT License",
3434
"Operating System :: OS Independent",
3535
"Programming Language :: Python",
36-
"Programming Language :: Python :: 2.7",
3736
"Programming Language :: Python :: 3",
3837
"Programming Language :: Python :: 3.6",
3938
"Programming Language :: Python :: 3.7",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py36,py37,py38,py39,pypy2,pypy3
2+
envlist = py36,py37,py38,py39,pypy3
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)