Skip to content

Commit 7cc0cd0

Browse files
committed
Drop Python 3.6 support
1 parent afde82d commit 7cc0cd0

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,16 @@ jobs:
2323
runs-on: "ubuntu-22.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,pypy-3.6,pypy-3.7'
26+
USING_COVERAGE: '3.7,3.8,3.9,3.10,pypy-3.7'
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}
36-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
37-
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
35+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3836
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
3937

4038
steps:

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,16 @@ jobs:
2222
runs-on: "macos-${{ matrix.config.os-ver }}"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,pypy-3.7'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,pypy-3.7'
2626

2727
strategy:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.6", os-ver: "13", testenvs: "py36,build", experimental: False}
3231
- {python-version: "3.7", os-ver: "13", testenvs: "py37,build", experimental: False}
3332
- {python-version: "3.8", os-ver: "14", testenvs: "py38,build", experimental: False}
3433
- {python-version: "3.9", os-ver: "14", testenvs: "py39,build", experimental: False}
35-
- {python-version: "3.10", os-ver: "14", testenvs: "py310-dev,build", experimental: True}
34+
- {python-version: "3.10", os-ver: "14", testenvs: "py310,build", experimental: False}
3635
- {python-version: "pypy-3.7", os-ver: "13", testenvs: "pypy37,build", experimental: False}
3736

3837
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ always = [ "greppy", "greppy.__main__",]
3131

3232
[tool.whey]
3333
base-classifiers = [ "Typing :: Typed",]
34-
python-versions = [ "3.6", "3.7", "3.8", "3.9",]
34+
python-versions = [ "3.7", "3.8", "3.9", "3.10",]
3535
python-implementations = [ "CPython", "PyPy",]
3636
platforms = [ "Linux", "macOS",]
3737
license-key = "MIT"

repo_helper.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ platforms:
1818
- macOS
1919

2020
python_versions:
21-
- 3.6
2221
- 3.7
2322
- 3.8
2423
- 3.9
25-
- 3.10-dev
26-
- pypy36
24+
- "3.10"
2725
- pypy37
2826

2927
sphinx_html_theme: furo

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-dev, pypy36, pypy37, mypy, build
25+
envlist = py37, py38, py39, py310, pypy37, 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-dev, pypy36, pypy37
35+
test = py37, py38, py39, py310, pypy37
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)