Skip to content

Commit cbd0867

Browse files
committed
fix: remove python 3.11 support for now
1 parent 235737f commit cbd0867

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"]
17+
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3"]
1818
steps:
1919
- name: Set up Python ${{ matrix.python-version }}
2020
uses: actions/setup-python@v1

Diff for: setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ def pip(filename):
106106
"Programming Language :: Python :: 3.8",
107107
"Programming Language :: Python :: 3.9",
108108
"Programming Language :: Python :: 3.10",
109-
"Programming Language :: Python :: 3.11",
110109
"Programming Language :: Python :: Implementation :: PyPy",
111110
"Topic :: Software Development :: Libraries :: Python Modules",
112111
"License :: OSI Approved :: BSD License",

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{37, 38, 39, 310, 311}, pypy3, doc
7+
envlist = py{37, 38, 39, 310}, pypy3, doc
88

99
[testenv]
1010
commands = {posargs:inv test qa}

0 commit comments

Comments
 (0)