Skip to content

Commit ab7fe22

Browse files
committed
Drop support for Python 3.6
1 parent 62c1947 commit ab7fe22

File tree

6 files changed

+12
-16
lines changed

6 files changed

+12
-16
lines changed

.github/workflows/python_ci.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -22,19 +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'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12'
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

3938
steps:
4039
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,19 +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'
26+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12'
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}
37+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
3938

4039
steps:
4140
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

+2-3
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'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12'
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

3938
steps:
4039
- name: Checkout 🛎️

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ base-classifiers = [
4040
"Topic :: Software Development :: Version Control :: Git",
4141
"Typing :: Typed",
4242
]
43-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11",]
43+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
4444
python-implementations = [ "CPython",]
4545
platforms = [ "Windows", "macOS", "Linux",]
4646
license-key = "MIT"

repo_helper.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,12 @@ entry_points:
2020
- repo_helper_github=repo_helper_github.cli:github
2121

2222
python_versions:
23-
- 3.6
2423
- 3.7
2524
- 3.8
2625
- 3.9
2726
- "3.10"
2827
- "3.11"
29-
- 3.12-dev
28+
- "3.12"
3029

3130
keywords:
3231
- github

tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# * pytest
2323

2424
[tox]
25-
envlist = py36, py37, py38, py39, py310, py311, py312-dev, mypy, build
25+
envlist = py37, py38, py39, py310, py311, py312, mypy, build
2626
skip_missing_interpreters = True
2727
isolated_build = True
2828
requires =
@@ -32,7 +32,7 @@ requires =
3232
virtualenv!=20.16.0
3333

3434
[envlists]
35-
test = py36, py37, py38, py39, py310, py311, py312-dev
35+
test = py37, py38, py39, py310, py311, py312
3636
qa = mypy, lint
3737
cov = py38, coverage
3838

@@ -51,7 +51,7 @@ setenv =
5151
PYTHONDEVMODE=1
5252
PIP_DISABLE_PIP_VERSION_CHECK=1
5353

54-
[testenv:py312-dev]
54+
[testenv:py312]
5555
download = True
5656
setenv =
5757
PYTHONDEVMODE=1
@@ -177,7 +177,7 @@ inline-quotes = "
177177
multiline-quotes = """
178178
docstring-quotes = """
179179
count = True
180-
min_python_version = 3.6.1
180+
min_python_version = 3.7
181181
unused-arguments-ignore-abstract-functions = True
182182
unused-arguments-ignore-overload-functions = True
183183
unused-arguments-ignore-magic-methods = True

0 commit comments

Comments
 (0)