Skip to content

Commit 36d6297

Browse files
committed
Drop support for Python 3.6
1 parent 83c4fcb commit 36d6297

File tree

6 files changed

+13
-33
lines changed

6 files changed

+13
-33
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,19 @@ 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,3.13,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,3.13,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: True}
3736
- {python-version: "3.12", testenvs: "py312,build", experimental: True}
38-
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
39-
- {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False}
37+
- {python-version: "3.13", testenvs: "py313,build", experimental: True}
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-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,21 +23,19 @@ 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,3.13,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,3.13,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: True}
3837
- {python-version: "3.12", testenvs: "py312,build", experimental: True}
39-
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
40-
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
38+
- {python-version: "3.13", testenvs: "py313,build", experimental: True}
4139
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4240
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4341
- {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,20 +22,19 @@ 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,3.13,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,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: True}
3736
- {python-version: "3.12", testenvs: "py312,build", experimental: True}
38-
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
37+
- {python-version: "3.13", testenvs: "py313,build", experimental: True}
3938
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4039
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4140
- {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
@@ -30,7 +30,7 @@ base-classifiers = [
3030
"Topic :: Utilities",
3131
"Typing :: Typed",
3232
]
33-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
33+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
3434
python-implementations = [ "CPython", "PyPy",]
3535
platforms = [ "Windows", "macOS", "Linux",]
3636
license-key = "MIT"

repo_helper.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ conda_channels:
2020

2121
# Versions to run tests for
2222
python_versions:
23-
'3.6':
2423
'3.7':
2524
"3.8":
2625
"3.9":
@@ -29,8 +28,8 @@ python_versions:
2928
experimental: true
3029
"3.12":
3130
experimental: true
32-
"3.13-dev":
33-
pypy36:
31+
"3.13":
32+
experimental: true
3433
pypy37:
3534
pypy38:
3635
pypy39:

tox.ini

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,13 @@
2121

2222
[tox]
2323
envlist =
24-
py36
2524
py37
2625
py38
2726
py39
2827
py310
2928
py311
3029
py312
31-
py313-dev
32-
pypy36
30+
py313
3331
pypy37
3432
pypy38
3533
pypy39
@@ -44,19 +42,7 @@ requires =
4442
virtualenv!=20.16.0
4543

4644
[envlists]
47-
test =
48-
py36
49-
py37
50-
py38
51-
py39
52-
py310
53-
py311
54-
py312
55-
py313-dev
56-
pypy36
57-
pypy37
58-
pypy38
59-
pypy39
45+
test = py37, py38, py39, py310, py311, py312, py313, pypy37, pypy38, pypy39
6046
qa = mypy, lint
6147
cov = py38, coverage
6248

@@ -75,7 +61,7 @@ setenv =
7561
PYTHONDEVMODE=1
7662
PIP_DISABLE_PIP_VERSION_CHECK=1
7763

78-
[testenv:py313-dev]
64+
[testenv:py313]
7965
download = True
8066
setenv =
8167
PYTHONDEVMODE=1
@@ -190,7 +176,7 @@ inline-quotes = "
190176
multiline-quotes = """
191177
docstring-quotes = """
192178
count = True
193-
min_python_version = 3.6.1
179+
min_python_version = 3.7
194180
unused-arguments-ignore-abstract-functions = True
195181
unused-arguments-ignore-overload-functions = True
196182
unused-arguments-ignore-magic-methods = True

0 commit comments

Comments
 (0)