Skip to content

Commit 9a9ca74

Browse files
committed
Drop pypy3.6
1 parent b085530 commit 9a9ca74

File tree

5 files changed

+14
-26
lines changed

5 files changed

+14
-26
lines changed

.github/workflows/python_ci.yml

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

2727
strategy:
2828
fail-fast: False
@@ -31,8 +31,7 @@ jobs:
3131
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3232
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3333
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
34-
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
35-
- {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False}
34+
- {python-version: "3.13", testenvs: "py313,build", experimental: False}
3635
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
3736
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
3837
- {python-version: "pypy-3.9-v7.3.15", testenvs: "pypy39,build", experimental: True}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ repos:
6666
hooks:
6767
- id: pyupgrade
6868
args:
69-
- --py36-plus
69+
- --py37-plus
7070
- --keep-runtime-typing
7171

7272
- repo: https://github.com/Lucas-C/pre-commit-hooks

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ always = [ "pytest_mypy_plugins_shim",]
3030

3131
[tool.whey]
3232
base-classifiers = []
33-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
33+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
3434
python-implementations = [ "CPython", "PyPy",]
3535
platforms = [ "Windows", "macOS", "Linux",]
3636
license-key = "MIT"

repo_helper.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,10 @@ entry_points:
2121
- "pytest-mypy-plugins-shim = pytest_mypy_plugins_shim"
2222

2323
python_versions:
24-
- pypy36
25-
- pypy37
26-
- pypy38
27-
- pypy39
28-
- "3.10"
29-
- "3.11"
30-
- "3.12"
31-
- "3.13-dev"
24+
pypy37:
25+
pypy38:
26+
pypy39:
27+
"3.10":
28+
"3.11":
29+
"3.12":
30+
"3.13":

tox.ini

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

2121
[tox]
22-
envlist =
23-
py310
24-
py311
25-
py312
26-
py313-dev
27-
pypy36
28-
pypy37
29-
pypy38
30-
pypy39
31-
mypy
32-
build
22+
envlist = py310, py311, py312, py313, pypy37, pypy38, pypy39, mypy, build
3323
skip_missing_interpreters = True
3424
isolated_build = True
3525
requires =
@@ -39,7 +29,7 @@ requires =
3929
virtualenv!=20.16.0
4030

4131
[envlists]
42-
test = py310, py311, py312, py313-dev, pypy36, pypy37, pypy38, pypy39
32+
test = py310, py311, py312, py313, pypy37, pypy38, pypy39
4333
qa = mypy, lint
4434

4535
[testenv]
@@ -160,7 +150,7 @@ inline-quotes = "
160150
multiline-quotes = """
161151
docstring-quotes = """
162152
count = True
163-
min_python_version = 3.6.1
153+
min_python_version = 3.7
164154
unused-arguments-ignore-abstract-functions = True
165155
unused-arguments-ignore-overload-functions = True
166156
unused-arguments-ignore-magic-methods = True

0 commit comments

Comments
 (0)