Skip to content

Commit 4d975c6

Browse files
committed
Drop support for EOL Python 3.6
1 parent 589b01c commit 4d975c6

File tree

5 files changed

+10
-13
lines changed

5 files changed

+10
-13
lines changed

.appveyor.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
# To activate, change the Appveyor settings to use `.appveyor.yml`.
22
environment:
33
global:
4-
PATH: "C:\\Python36\\Scripts\\;%PATH%"
4+
PATH: "C:\\Python38\\Scripts\\;%PATH%"
55
matrix:
6-
- TOXENV: py36-base
7-
- TOXENV: py36-optional
86
- TOXENV: py37-base
97
- TOXENV: py37-optional
108
- TOXENV: py38-base
119
- TOXENV: py38-optional
1210

1311
install:
1412
- git submodule update --init --recursive
15-
- C:\\Python36\\python.exe -m pip install tox
13+
- C:\\Python38\\python.exe -m pip install tox
1614

1715
build: off
1816

1917
test_script:
2018
- tox
2119

2220
after_test:
23-
- C:\\Python36\\python.exe debug-info.py
21+
- C:\\Python38\\python.exe debug-info.py

.github/workflows/python-tox.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ jobs:
66
if: github.event.push || github.event.pull_request.head.repo.full_name != github.repository
77
runs-on: ubuntu-latest
88
strategy:
9+
fail-fast: false
910
matrix:
10-
python: [3.6, 3.7, 3.8, pypy3]
11+
python: [3.7, 3.8, pypy3.8]
1112
steps:
12-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1314
with:
1415
submodules: true
15-
- uses: actions/setup-python@v2
16+
- uses: actions/setup-python@v4
1617
with:
1718
python-version: ${{ matrix.python }}
1819
- run: pip install tox

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ python:
44
- "3.9"
55
- "3.8"
66
- "3.7"
7-
- "3.6"
87

98
cache: pip
109

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ def default_environment():
6060
'Operating System :: OS Independent',
6161
'Programming Language :: Python',
6262
'Programming Language :: Python :: 3',
63-
'Programming Language :: Python :: 3.6',
6463
'Programming Language :: Python :: 3.7',
6564
'Programming Language :: Python :: 3.8',
6665
'Programming Language :: Python :: 3 :: Only',
@@ -100,7 +99,7 @@ def default_environment():
10099
install_requires=[
101100
'webencodings',
102101
],
103-
python_requires=">=3.6",
102+
python_requires=">=3.7",
104103
extras_require={
105104
# A conditional extra will only install these items when the extra is
106105
# requested and the condition matches.

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,py3}-{base,optional}
2+
envlist = py{37,38,py3}-{base,optional}
33

44
[testenv]
55
deps =
@@ -11,7 +11,7 @@ passenv =
1111
PYTEST_COMMAND # this is maintained so one can, e.g., PYTEST_COMMAND="coverage run -m pytest"
1212
COVERAGE_RUN_OPTIONS
1313
commands =
14-
{env:PYTEST_COMMAND:{envbindir}/py.test} {posargs}
14+
{env:PYTEST_COMMAND:{envbindir}/pytest} {posargs}
1515
flake8 {toxinidir}
1616

1717
[testenv:doc]

0 commit comments

Comments
 (0)