Skip to content

Commit 08f7bfd

Browse files
committed
Add Python 3.11 support, drop 3.8
1 parent e354f8a commit 08f7bfd

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v3
2424
- uses: actions/setup-python@v4
2525
with:
26-
python-version: "3.10"
26+
python-version: "3.x"
2727
cache: 'pip'
2828
cache-dependency-path: 'requirements.txt'
2929
- run: python -m pip install -r requirements.txt
@@ -35,10 +35,7 @@ jobs:
3535
- run: sudo apt install -y gettext
3636
- uses: actions/setup-python@v4
3737
with:
38-
python-version: "3.10"
39-
- uses: actions/[email protected]
40-
with:
41-
node-version: 'lts/*'
38+
python-version: "3.x"
4239
- uses: actions/checkout@v3
4340
- name: Install Python dependencies
4441
run: python -m pip install --upgrade pip setuptools wheel twine readme-renderer
@@ -54,7 +51,7 @@ jobs:
5451
- uses: actions/checkout@v3
5552
- uses: actions/setup-python@v4
5653
with:
57-
python-version: "3.10"
54+
python-version: "3.x"
5855
cache: 'pip'
5956
cache-dependency-path: 'requirements.txt'
6057
- run: python -m pip install --upgrade pip setuptools wheel
@@ -68,9 +65,9 @@ jobs:
6865
strategy:
6966
matrix:
7067
python-version:
71-
- "3.8"
7268
- "3.9"
7369
- "3.10"
70+
- "3.11"
7471
steps:
7572
- name: Set up Python ${{ matrix.python-version }}
7673
uses: actions/setup-python@v4
@@ -91,7 +88,7 @@ jobs:
9188
matrix:
9289
extras:
9390
- wagtail
94-
python-version: ["3.10"]
91+
python-version: ["3.x"]
9592
steps:
9693
- name: Set up Python ${{ matrix.python-version }}
9794
uses: actions/setup-python@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-python@v4
1414
with:
15-
python-version: "3.10"
15+
python-version: "3.x"
1616
- name: Install Python dependencies
1717
run: python -m pip install --upgrade pip setuptools wheel twine
1818
- name: Build dist packages

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ classifier =
1414
Intended Audience :: Developers
1515
Programming Language :: Python
1616
Programming Language :: Python :: 3
17-
Programming Language :: Python :: 3.8
1817
Programming Language :: Python :: 3.9
1918
Programming Language :: Python :: 3.10
19+
Programming Language :: Python :: 3.11
2020
Programming Language :: Python :: 3 :: Only
2121
Topic :: Internet :: WWW/HTTP
2222
Topic :: Internet

0 commit comments

Comments
 (0)