Skip to content

Commit f211272

Browse files
committed
Drop support for Python 3.6
1 parent fd5f5bc commit f211272

File tree

6 files changed

+12
-32
lines changed

6 files changed

+12
-32
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,18 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.6", testenvs: "py36,build", experimental: False}
3231
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3332
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3433
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3534
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3635
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
37-
- {python-version: "3.12", testenvs: "py312-dev,build", experimental: True}
38-
- {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False}
36+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
3937
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4038
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4139
- {python-version: "pypy-3.9-v7.3.15", testenvs: "pypy39,build", experimental: True}

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,18 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
26+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,pypy-3.7,pypy-3.8,pypy-3.9'
2727

2828
strategy:
2929
fail-fast: False
3030
matrix:
3131
config:
32-
- {python-version: "3.6", testenvs: "py36,build", experimental: False}
3332
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3433
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3534
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3635
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3736
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
38-
- {python-version: "3.12", testenvs: "py312-dev,build", experimental: True}
39-
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
37+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
4038
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4139
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4240
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,18 @@ jobs:
2222
runs-on: "macos-13"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.6", testenvs: "py36,build", experimental: False}
3231
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3332
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3433
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3534
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3635
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
37-
- {python-version: "3.12", testenvs: "py312-dev,build", experimental: True}
36+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
3837
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
3938
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4039
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ always = [ "pyproject_examples.example_configs", "pyproject_examples", "pyprojec
2727

2828
[tool.whey]
2929
base-classifiers = [ "Typing :: Typed",]
30-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11",]
30+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
3131
python-implementations = [ "CPython", "PyPy",]
3232
platforms = [ "Windows", "macOS", "Linux",]
3333
license-key = "MIT"

repo_helper.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,12 @@ use_whey: true
1717
pre_commit_exclude: "^README.rst$"
1818

1919
python_versions:
20-
- 3.6
2120
- 3.7
2221
- 3.8
2322
- 3.9
2423
- "3.10"
2524
- "3.11"
26-
- "3.12-dev"
27-
- pypy36
25+
- "3.12"
2826
- pypy37
2927
- pypy38
3028
- pypy39

tox.ini

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,12 @@
2020

2121
[tox]
2222
envlist =
23-
py36
2423
py37
2524
py38
2625
py39
2726
py310
2827
py311
29-
py312-dev
30-
pypy36
28+
py312
3129
pypy37
3230
pypy38
3331
pypy39
@@ -42,18 +40,7 @@ requires =
4240
virtualenv!=20.16.0
4341

4442
[envlists]
45-
test =
46-
py36
47-
py37
48-
py38
49-
py39
50-
py310
51-
py311
52-
py312-dev
53-
pypy36
54-
pypy37
55-
pypy38
56-
pypy39
43+
test = py37, py38, py39, py310, py311, py312, pypy37, pypy38, pypy39
5744
qa = mypy, lint
5845

5946
[testenv]
@@ -71,7 +58,7 @@ setenv =
7158
PYTHONDEVMODE=1
7259
PIP_DISABLE_PIP_VERSION_CHECK=1
7360

74-
[testenv:py312-dev]
61+
[testenv:py312]
7562
download = True
7663
setenv =
7764
PYTHONDEVMODE=1
@@ -167,7 +154,7 @@ inline-quotes = "
167154
multiline-quotes = """
168155
docstring-quotes = """
169156
count = True
170-
min_python_version = 3.6.1
157+
min_python_version = 3.7
171158
unused-arguments-ignore-abstract-functions = True
172159
unused-arguments-ignore-overload-functions = True
173160
unused-arguments-ignore-magic-methods = True

0 commit comments

Comments
 (0)