Skip to content

Commit bde2ed2

Browse files
committed
Drop support for Python 3.6
1 parent c292674 commit bde2ed2

File tree

4 files changed

+3
-20
lines changed

4 files changed

+3
-20
lines changed

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 3 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}
3837
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
39-
- {python-version: "pypy-3.6", testenvs: "pypy36,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}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ base-classifiers = [
3131
"Topic :: Utilities",
3232
"Typing :: Typed",
3333
]
34-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
34+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
3535
python-implementations = [ "CPython", "PyPy",]
3636
platforms = [ "Windows", "macOS", "Linux",]
3737
license-key = "MIT"

repo_helper.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@ conda_channels:
1818

1919
# Versions to run tests for
2020
python_versions:
21-
- 3.6
2221
- 3.7
2322
- 3.8
2423
- 3.9
2524
- "3.10"
2625
- "3.11"
2726
- "3.12"
28-
- "pypy36"
2927
- "pypy37"
3028
- "pypy38"
3129
- "pypy39"

tox.ini

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,12 @@
2222

2323
[tox]
2424
envlist =
25-
py36
2625
py37
2726
py38
2827
py39
2928
py310
3029
py311
3130
py312
32-
pypy36
3331
pypy37
3432
pypy38
3533
pypy39
@@ -44,18 +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-
pypy36
56-
pypy37
57-
pypy38
58-
pypy39
45+
test = py37, py38, py39, py310, py311, py312, pypy37, pypy38, pypy39
5946
qa = mypy, lint
6047
cov = py38, coverage
6148

0 commit comments

Comments
 (0)