Skip to content

Commit 3aa1141

Browse files
committed
Require Python 3.6 in tox and github actions
1 parent ab04693 commit 3aa1141

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
python: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
9+
python: [3.6, 3.7, 3.8, 3.9]
1010
platform: [ubuntu-latest, macos-latest, windows-latest]
1111
runs-on: ${{ matrix.platform }}
1212
steps:

coverage.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ exclude_lines =
1717
raise NotImplementedError
1818
raise AssertionError
1919
assert\s
20-
nocoverpy${PYV}
2120

2221
[paths]
2322
source =

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py27,py35,py36,py37,py38}{,-cov,-diffcov},qa,docs,perf
2+
envlist = {py36,py37,py38}{,-cov,-diffcov},qa,docs,perf
33
skip_missing_interpreters = True
44
minversion = 3.2
55
# Ensure that a late version of pip is used even on tox-venv.
@@ -32,8 +32,6 @@ setenv =
3232
cov: COVERAGE_PROCESS_START={[coverage]rcfile}
3333
cov: COVERAGE_OPTIONS="-p"
3434
cov: COVERAGE_FILE={toxinidir}/.coverage
35-
py27: PYV=2
36-
py35,py36,py37,py38: PYV=3
3735
# workaround deprecation warnings in pip's vendored packages
3836
PYTHONWARNINGS=ignore:Using or importing the ABCs:DeprecationWarning:pip._vendor
3937
extras =

0 commit comments

Comments
 (0)