Skip to content

Commit 353805e

Browse files
committed
Drop support for Python 3.6
1 parent be49b1a commit 353805e

File tree

6 files changed

+12
-23
lines changed

6 files changed

+12
-23
lines changed

Diff for: .github/workflows/python_ci.yml

+2-4
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,pypy-3.10'
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,pypy-3.10'
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}
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: 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}

Diff for: .github/workflows/python_ci_linux.yml

+2-4
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,pypy-3.10'
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,pypy-3.10'
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: "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: 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}

Diff for: .github/workflows/python_ci_macos.yml

+2-3
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,pypy-3.10'
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,pypy-3.10'
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}
38-
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
37+
- {python-version: "3.13", testenvs: "py313,build", experimental: False}
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}

Diff for: pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ classifiers = [
1616
"Operating System :: OS Independent",
1717
"Programming Language :: Python",
1818
"Programming Language :: Python :: 3 :: Only",
19-
"Programming Language :: Python :: 3.6",
2019
"Programming Language :: Python :: 3.7",
2120
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
2626
"Programming Language :: Python :: Implementation :: CPython",
2727
"Programming Language :: Python :: Implementation :: PyPy",
2828
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -142,7 +142,7 @@ base-classifiers = [
142142
"Topic :: Software Development :: Libraries :: Python Modules",
143143
"Typing :: Typed",
144144
]
145-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
145+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
146146
python-implementations = [ "CPython", "PyPy",]
147147
platforms = [ "Windows", "macOS", "Linux",]
148148
license-key = "MIT"

Diff for: repo_helper.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,13 @@ conda_channels:
2020
- conda-forge
2121

2222
python_versions:
23-
3.6:
2423
3.7:
2524
3.8:
2625
3.9:
2726
"3.10":
2827
"3.11":
2928
"3.12":
30-
"3.13-dev":
31-
pypy36:
29+
"3.13":
3230
pypy37:
3331
pypy38:
3432
pypy39:

Diff for: tox.ini

+3-7
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,13 @@
2222

2323
[tox]
2424
envlist =
25-
py36
2625
py37
2726
py38
2827
py39
2928
py310
3029
py311
3130
py312
32-
py313-dev
33-
pypy36
31+
py313
3432
pypy37
3533
pypy38
3634
pypy39
@@ -47,15 +45,13 @@ requires =
4745

4846
[envlists]
4947
test =
50-
py36
5148
py37
5249
py38
5350
py39
5451
py310
5552
py311
5653
py312
57-
py313-dev
58-
pypy36
54+
py313
5955
pypy37
6056
pypy38
6157
pypy39
@@ -68,7 +64,7 @@ setenv =
6864
PYTHONDEVMODE=1
6965
PIP_DISABLE_PIP_VERSION_CHECK=1
7066

71-
[testenv:py313-dev]
67+
[testenv:py313]
7268
download = True
7369
setenv =
7470
PYTHONDEVMODE=1

0 commit comments

Comments
 (0)