Skip to content

Commit b389573

Browse files
authored
Merge pull request #28 from Blue-Yonder-OSS/remove-python2-support_master
Removed support for python 2.7
2 parents 52a5023 + bcb2d70 commit b389573

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

Diff for: .github/workflows/unit_test_execution.yml

+1-1
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

Diff for: .travis.yml

-2
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

Diff for: setup.py

-1
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",

Diff for: tox.ini

+1-1
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)