Skip to content

Commit 7edd737

Browse files
committed
Drop support for Python 3.6
1 parent 42d9b36 commit 7edd737

File tree

6 files changed

+5
-16
lines changed

6 files changed

+5
-16
lines changed

.github/workflows/python_ci.yml

Lines changed: 1 addition & 3 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: False}
3736
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
3837
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
39-
- {python-version: "pypy-3.6", testenvs: "pypy36", 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-v7.3.15", testenvs: "pypy39,build", experimental: True}

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 3 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: False}
3837
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
3938
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
40-
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
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: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ 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}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ base-classifiers = [
3636
"Intended Audience :: Developers",
3737
"Typing :: Typed",
3838
]
39-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
39+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
4040
python-implementations = [ "CPython", "PyPy",]
4141
platforms = [ "Windows", "macOS", "Linux",]
4242
license-key = "MIT"

repo_helper.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,13 @@ keywords:
2424
- flake8
2525

2626
python_versions:
27-
- '3.6'
2827
- '3.7'
2928
- '3.8'
3029
- '3.9'
3130
- "3.10"
3231
- "3.11"
3332
- "3.12"
3433
- 3.13-dev
35-
- pypy36
3634
- pypy37
3735
- pypy38
3836
- pypy39

tox.ini

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,13 @@
2020

2121
[tox]
2222
envlist =
23-
py36
2423
py37
2524
py38
2625
py39
2726
py310
2827
py311
2928
py312
3029
py313-dev
31-
pypy36
3230
pypy37
3331
pypy38
3432
pypy39
@@ -44,15 +42,13 @@ requires =
4442

4543
[envlists]
4644
test =
47-
py36
4845
py37
4946
py38
5047
py39
5148
py310
5249
py311
5350
py312
5451
py313-dev
55-
pypy36
5652
pypy37
5753
pypy38
5854
pypy39
@@ -176,7 +172,7 @@ inline-quotes = "
176172
multiline-quotes = """
177173
docstring-quotes = """
178174
count = True
179-
min_python_version = 3.6.1
175+
min_python_version = 3.7
180176
unused-arguments-ignore-abstract-functions = True
181177
unused-arguments-ignore-overload-functions = True
182178
unused-arguments-ignore-magic-methods = True

0 commit comments

Comments
 (0)