Skip to content

Commit 3b0dbb1

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 b1c4e62 commit 3b0dbb1

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
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: "3.11"
22+
python-version: "3.10"
2323

2424
- name: Install dependencies
2525
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
@@ -19,8 +19,7 @@ python =
1919
3.7: py37
2020
3.8: py38
2121
3.9: py39
22-
"3.10": py310
23-
3.11: py311, mypy
22+
"3.10": py310, mypy
2423

2524
[testenv]
2625
deps =

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"Programming Language :: Python :: 3.8",
4141
"Programming Language :: Python :: 3.9",
4242
"Programming Language :: Python :: 3.10",
43-
"Programming Language :: Python :: 3.11",
4443
"Programming Language :: Python",
4544
"Topic :: Internet :: Proxy Servers",
4645
"Topic :: Internet",

0 commit comments

Comments
 (0)