Skip to content

Commit 0ac6fbb

Browse files
committed
Drop support for Python 3.6
1 parent 6e27d00 commit 0ac6fbb

File tree

6 files changed

+7
-11
lines changed

6 files changed

+7
-11
lines changed

.github/workflows/python_ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ 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'
25+
USING_COVERAGE: '3.7,3.8,3.9,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}

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,12 @@ 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'
26+
USING_COVERAGE: '3.7,3.8,3.9,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}

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ 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'
25+
USING_COVERAGE: '3.7,3.8,3.9,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}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ base-classifiers = [
3737
"Topic :: Utilities",
3838
"Typing :: Typed",
3939
]
40-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10",]
40+
python-versions = [ "3.7", "3.8", "3.9", "3.10",]
4141
python-implementations = [ "CPython",]
4242
platforms = [ "Windows", "macOS", "Linux",]
4343
license-key = "GPL-2.0-only"

repo_helper.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ conda_channels:
1919

2020
# Versions to run tests for
2121
python_versions:
22-
- '3.6'
2322
- '3.7'
2423
- '3.8'
2524
- '3.9'

tox.ini

Lines changed: 3 additions & 3 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, mypy, build
25+
envlist = py37, py38, py39, py310, 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
35+
test = py37, py38, py39, py310
3636
qa = mypy, lint
3737
cov = py38, coverage
3838

@@ -170,7 +170,7 @@ inline-quotes = "
170170
multiline-quotes = """
171171
docstring-quotes = """
172172
count = True
173-
min_python_version = 3.6.1
173+
min_python_version = 3.7
174174
unused-arguments-ignore-abstract-functions = True
175175
unused-arguments-ignore-overload-functions = True
176176
unused-arguments-ignore-magic-methods = True

0 commit comments

Comments
 (0)