Skip to content

Commit f1e1105

Browse files
committed
Do not test on 3.11
mocket currently does not work with 3.11. See these issues: mindflayer/python-mocket#181 benoitc/http-parser#95
1 parent fd0c6ce commit f1e1105

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v4
1919
with:
20-
python-version: "3.11"
20+
python-version: "3.10"
2121

2222
- name: Install dependencies
2323
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# We don't test on Windows currently as it appears mocket may not
1515
# work there.
1616
platform: [ubuntu-latest, macos-latest]
17-
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
17+
python-version: [3.7, 3.8, 3.9, "3.10"]
1818

1919
name: Python ${{ matrix.python-version }} on ${{ matrix.platform }}
2020
runs-on: ${{ matrix.platform }}

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ python =
1616
3.7: py37
1717
3.8: py38
1818
3.9: py39
19-
"3.10": py310
20-
3.11: py311, mypy
19+
"3.10": py310, mypy
2120

2221
[testenv]
2322
deps =

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
"Programming Language :: Python :: 3.8",
5353
"Programming Language :: Python :: 3.9",
5454
"Programming Language :: Python :: 3.10",
55-
"Programming Language :: Python :: 3.11",
5655
"Programming Language :: Python",
5756
"Topic :: Internet :: Proxy Servers",
5857
"Topic :: Internet :: WWW/HTTP",

0 commit comments

Comments
 (0)