Skip to content

Commit e8e1d3f

Browse files
committed
Drop support for Python 3.6
1 parent 2ed6aa7 commit e8e1d3f

6 files changed

Lines changed: 12 additions & 16 deletions

File tree

.github/workflows/python_ci.yml

Lines changed: 2 additions & 3 deletions
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

Lines changed: 2 additions & 3 deletions
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

Lines changed: 2 additions & 3 deletions
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

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

repo_helper.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,12 @@ conda_channels:
2121
- conda-forge
2222

2323
python_versions:
24-
- '3.6'
2524
- '3.7'
2625
- '3.8'
2726
- '3.9'
2827
- '3.10'
2928
- '3.11'
30-
- 3.12-dev
29+
- '3.12'
3130

3231
extra_sphinx_extensions:
3332
- enum_tools.autoenum

tox.ini

Lines changed: 4 additions & 4 deletions
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 = py37, 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)