Skip to content

Commit 70f240c

Browse files
committed
Drop support for Python 3.6
1 parent 4d26c5d commit 70f240c

File tree

6 files changed

+12
-16
lines changed

6 files changed

+12
-16
lines changed

.github/workflows/python_ci.yml

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

4039
steps:
4140
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 3 deletions
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,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}
38+
- {python-version: "3.13", testenvs: "py313,build", experimental: False}
4039

4140
steps:
4241
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

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

4039
steps:
4140
- name: Checkout 🛎️

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ base-classifiers = [
3333
"Topic :: Utilities",
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"

repo_helper.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@ enable_tests: false
2020

2121
# Versions to run tests for
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
29+
- "3.13"
3130

3231
classifiers:
3332
- 'Development Status :: 4 - Beta'

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# * pytest
2020

2121
[tox]
22-
envlist = py36, py37, py38, py39, py310, py311, py312, py313-dev, mypy, build
22+
envlist = py37, py38, py39, py310, py311, py312, py313, mypy, build
2323
skip_missing_interpreters = True
2424
isolated_build = True
2525
requires =
@@ -29,7 +29,7 @@ requires =
2929
virtualenv!=20.16.0
3030

3131
[envlists]
32-
test = py36, py37, py38, py39, py310, py311, py312, py313-dev
32+
test = py37, py38, py39, py310, py311, py312, py313
3333
qa = mypy, lint
3434

3535
[testenv]
@@ -47,7 +47,7 @@ setenv =
4747
PYTHONDEVMODE=1
4848
PIP_DISABLE_PIP_VERSION_CHECK=1
4949

50-
[testenv:py313-dev]
50+
[testenv:py313]
5151
download = True
5252
setenv =
5353
PYTHONDEVMODE=1
@@ -150,7 +150,7 @@ inline-quotes = "
150150
multiline-quotes = """
151151
docstring-quotes = """
152152
count = True
153-
min_python_version = 3.6.1
153+
min_python_version = 3.7
154154
unused-arguments-ignore-abstract-functions = True
155155
unused-arguments-ignore-overload-functions = True
156156
unused-arguments-ignore-magic-methods = True

0 commit comments

Comments
 (0)