Skip to content

Commit 31871df

Browse files
committed
Drop support for Python 3.6
1 parent 2d86381 commit 31871df

File tree

6 files changed

+13
-19
lines changed

6 files changed

+13
-19
lines changed

Diff for: .github/workflows/python_ci.yml

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

2727
strategy:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.6", testenvs: "py36-click{7,8},build", experimental: False}
3231
- {python-version: "3.7", testenvs: "py37-click{7,8},build", experimental: False}
3332
- {python-version: "3.8", testenvs: "py38-click{7,8},build", experimental: False}
3433
- {python-version: "3.9", testenvs: "py39-click{7,8},build", experimental: False}
3534
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
3635
- {python-version: "3.11", testenvs: "py311-click{7,8},build", experimental: False}
3736
- {python-version: "3.12", testenvs: "py312-click{7,8},build", experimental: False}
38-
- {python-version: "3.13", testenvs: "py313-dev-click{7,8},build", experimental: True}
37+
- {python-version: "3.13", testenvs: "py313-click{7,8},build", experimental: False}
3938

4039
steps:
4140
- name: Checkout 🛎️

Diff for: .github/workflows/python_ci_linux.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,20 +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'
26+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
2727

2828
strategy:
2929
fail-fast: False
3030
matrix:
3131
config:
32-
- {python-version: "3.6", testenvs: "py36-click{7,8},build", experimental: False}
3332
- {python-version: "3.7", testenvs: "py37-click{7,8},build", experimental: False}
3433
- {python-version: "3.8", testenvs: "py38-click{7,8},build", experimental: False}
3534
- {python-version: "3.9", testenvs: "py39-click{7,8},build", experimental: False}
3635
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
3736
- {python-version: "3.11", testenvs: "py311-click{7,8},build", experimental: False}
3837
- {python-version: "3.12", testenvs: "py312-click{7,8},build", experimental: False}
39-
- {python-version: "3.13", testenvs: "py313-dev-click{7,8},build", experimental: True}
38+
- {python-version: "3.13", testenvs: "py313-click{7,8},build", experimental: False}
4039

4140
steps:
4241
- name: Checkout 🛎️

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

2727
strategy:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.6", testenvs: "py36-click{7,8},build", experimental: False}
3231
- {python-version: "3.7", testenvs: "py37-click{7,8},build", experimental: False}
3332
- {python-version: "3.8", testenvs: "py38-click{7,8},build", experimental: False}
3433
- {python-version: "3.9", testenvs: "py39-click{7,8},build", experimental: False}
3534
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
3635
- {python-version: "3.11", testenvs: "py311-click{7,8},build", experimental: False}
3736
- {python-version: "3.12", testenvs: "py312-click{7,8},build", experimental: False}
38-
- {python-version: "3.13", testenvs: "py313-dev-click{7,8},build", experimental: True}
37+
- {python-version: "3.13", testenvs: "py313-click{7,8},build", experimental: False}
3938

4039
steps:
4140
- name: Checkout 🛎️

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ base-classifiers = [
3333
"Intended Audience :: Developers",
3434
"Typing :: Typed",
3535
]
36-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
36+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
3737
python-implementations = [ "CPython",]
3838
platforms = [ "Windows", "macOS", "Linux",]
3939
license-key = "MIT"

Diff for: repo_helper.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@ sphinx_html_theme: furo
1717
docs_fail_on_warning: true
1818

1919
python_versions:
20-
- '3.6'
2120
- '3.7'
2221
- '3.8'
2322
- '3.9'
2423
- "3.10"
2524
- "3.11"
2625
- "3.12"
27-
- 3.13-dev
26+
- "3.13"
2827

2928
keywords:
3029
- formatting

Diff for: tox.ini

+5-7
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,13 @@
2323

2424
[tox]
2525
envlist =
26-
py36-click{7,8}
2726
py37-click{7,8}
2827
py38-click{7,8}
2928
py39-click{7,8}
3029
py310-click{7,8}
3130
py311-click{7,8}
3231
py312-click{7,8}
33-
py313-dev-click{7,8}
32+
py313-click{7,8}
3433
mypy
3534
build
3635
skip_missing_interpreters = True
@@ -43,14 +42,13 @@ requires =
4342

4443
[envlists]
4544
test =
46-
py36-click{7,8}
4745
py37-click{7,8}
4846
py38-click{7,8}
4947
py39-click{7,8}
5048
py310-click{7,8}
5149
py311-click{7,8}
5250
py312-click{7,8}
53-
py313-dev-click{7,8}
51+
py313-click{7,8}
5452
qa = mypy, lint
5553
cov = py38-click7, coverage
5654

@@ -72,7 +70,7 @@ setenv =
7270
PYTHONDEVMODE=1
7371
PIP_DISABLE_PIP_VERSION_CHECK=1
7472

75-
[testenv:py313-dev]
73+
[testenv:py313]
7674
download = True
7775
setenv =
7876
PYTHONDEVMODE=1
@@ -204,7 +202,7 @@ inline-quotes = "
204202
multiline-quotes = """
205203
docstring-quotes = """
206204
count = True
207-
min_python_version = 3.6.1
205+
min_python_version = 3.7
208206
unused-arguments-ignore-abstract-functions = True
209207
unused-arguments-ignore-overload-functions = True
210208
unused-arguments-ignore-magic-methods = True
@@ -244,7 +242,7 @@ setenv =
244242
PYTHONDEVMODE=1
245243
PIP_DISABLE_PIP_VERSION_CHECK=1
246244
247-
[testenv:py313-dev-click{7,8}]
245+
[testenv:py313-click{7,8}]
248246
download = True
249247
setenv =
250248
PYTHONDEVMODE=1

0 commit comments

Comments
 (0)