Skip to content

Commit bcb2d70

Browse files
committed
Removed support for python 2.7
1 parent 52a5023 commit bcb2d70

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

.github/workflows/unit_test_execution.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-20.04
88
strategy:
99
matrix:
10-
python-version: ["2.7", "3.5", "3.6", "3.9"]
10+
python-version: ["3.5", "3.6", "3.9"]
1111
name: Python ${{ matrix.python-version }}
1212
steps:
1313
- uses: actions/checkout@v2

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ sudo: false
33
cache: pip
44
matrix:
55
include:
6-
- python: 2.7
7-
env: TOXENV=py27
86
- python: 3.5
97
env: TOXENV=py35
108
- python: 3.6

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ def read(*names, **kwargs):
3535
"Operating System :: POSIX",
3636
"Operating System :: Microsoft :: Windows",
3737
"Programming Language :: Python",
38-
"Programming Language :: Python :: 2.7",
3938
"Programming Language :: Python :: 3.5",
4039
"Programming Language :: Python :: 3.6",
4140
"Programming Language :: Python :: 3.9",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,35,36,39}
2+
envlist = py{35,36,39}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)