Skip to content

Commit 87acc9f

Browse files
committed
Drop python3.11 checks
As often segfaults. Signed-off-by: Bernát Gábor <[email protected]>
1 parent b5e956c commit 87acc9f

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

.github/workflows/check.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
- "3.9"
3030
- "3.8"
3131
- "3.7"
32-
- "3.11-dev" # as is not yet released do it at the end
3332
os:
3433
- ubuntu-20.04
3534
- windows-2022

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ repos:
4343
rev: v1.20.0
4444
hooks:
4545
- id: setup-cfg-fmt
46-
args: [ --min-py3-version, "3.7", "--max-py-version", "3.11" ]
46+
args: [ --min-py3-version, "3.7", "--max-py-version", "3.10" ]
4747
- repo: https://github.com/PyCQA/flake8
4848
rev: 4.0.1
4949
hooks:

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ classifiers =
2020
Programming Language :: Python :: 3.8
2121
Programming Language :: Python :: 3.9
2222
Programming Language :: Python :: 3.10
23-
Programming Language :: Python :: 3.11
2423
Topic :: Internet
2524
Topic :: Software Development :: Libraries
2625
Topic :: System

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tox]
22
envlist =
33
fix_lint
4-
py311
54
py310
65
py39
76
py38
@@ -75,7 +74,6 @@ commands =
7574
coverage html -d {toxworkdir}/htmlcov
7675
diff-cover --compare-branch {env:DIFF_AGAINST:origin/main} {toxworkdir}/coverage.xml
7776
depends =
78-
py311
7977
py310
8078
py39
8179
py38

0 commit comments

Comments
 (0)