Skip to content

Commit d077ffb

Browse files
committed
Drop support for Python 3.6
1 parent 6935e74 commit d077ffb

File tree

8 files changed

+15
-20
lines changed

8 files changed

+15
-20
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: steps.changes.outputs.code == 'true'
3636
uses: "actions/setup-python@v5"
3737
with:
38-
python-version: "3.6"
38+
python-version: "3.8"
3939

4040
- name: Install dependencies 🔧
4141
if: steps.changes.outputs.code == 'true'

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if: steps.changes.outputs.code == 'true'
4141
uses: "actions/setup-python@v5"
4242
with:
43-
python-version: "3.6"
43+
python-version: "3.8"
4444

4545
- name: Install dependencies 🔧
4646
run: |

.github/workflows/python_ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
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,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}

.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,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}

pyproject.toml

Lines changed: 2 additions & 2 deletions
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", "3.12",]
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 = "LGPL-3.0-or-later"
@@ -119,7 +119,7 @@ autodoc_exclude_members = [
119119
]
120120

121121
[tool.mypy]
122-
python_version = "3.6"
122+
python_version = "3.8"
123123
namespace_packages = true
124124
check_untyped_defs = true
125125
warn_unused_ignores = true

repo_helper.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ license: 'LGPLv3+'
1414
short_desc: '🐙 🧀 – Copy PyPI Packages to GitHub Releases'
1515

1616
use_whey: true
17-
python_deploy_version: 3.6
1817
enable_conda: false
1918
min_coverage: 93
2019
standalone_contrib_guide: true
@@ -24,7 +23,6 @@ console_scripts:
2423

2524
# Versions to run tests for
2625
python_versions:
27-
- 3.6
2826
- 3.7
2927
- 3.8
3028
- 3.9

tox.ini

Lines changed: 9 additions & 9 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, mypy, build
25+
envlist = py37, py38, py39, py310, py311, py312, mypy, build
2626
skip_missing_interpreters = True
2727
isolated_build = True
2828
requires =
@@ -32,9 +32,9 @@ requires =
3232
virtualenv!=20.16.0
3333

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

3939
[testenv]
4040
setenv =
@@ -84,7 +84,7 @@ commands =
8484
check-wheel-contents dist/
8585

8686
[testenv:lint]
87-
basepython = python3.6
87+
basepython = python3.8
8888
changedir = {toxinidir}
8989
ignore_errors = True
9090
skip_install = True
@@ -114,15 +114,15 @@ deps =
114114
commands = python3 -m flake8_rst_docstrings_sphinx octocheese tests --allow-toolbox {posargs}
115115

116116
[testenv:perflint]
117-
basepython = python3.6
117+
basepython = python3.8
118118
changedir = {toxinidir}
119119
ignore_errors = True
120120
skip_install = True
121121
deps = perflint
122122
commands = python3 -m perflint octocheese {posargs}
123123

124124
[testenv:mypy]
125-
basepython = python3.6
125+
basepython = python3.8
126126
ignore_errors = True
127127
changedir = {toxinidir}
128128
deps =
@@ -132,15 +132,15 @@ deps =
132132
commands = mypy octocheese tests {posargs}
133133

134134
[testenv:pyup]
135-
basepython = python3.6
135+
basepython = python3.8
136136
skip_install = True
137137
ignore_errors = True
138138
changedir = {toxinidir}
139139
deps = pyupgrade-directories
140140
commands = pyup_dirs octocheese tests --py36-plus --recursive
141141

142142
[testenv:coverage]
143-
basepython = python3.6
143+
basepython = python3.8
144144
skip_install = True
145145
ignore_errors = True
146146
whitelist_externals = /bin/bash
@@ -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)