Skip to content

Commit d348495

Browse files
Add Python 3.12 to pipelines (#563)
Co-authored-by: Peter Doggart <[email protected]>
1 parent 7216135 commit d348495

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.8"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.8", "3.12"]
1919
flask: ["<3.0.0", ">=3.0.0"]
2020
steps:
2121
- name: Set up Python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v4
2323
with:
2424
python-version: ${{ matrix.python-version }}
25+
allow-prereleases: true
2526
- name: Checkout code
2627
uses: actions/checkout@v3
2728
- name: Install dependencies

requirements/test.pip

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ pytest-flask==1.2.0
88
pytest-mock==3.6.1
99
pytest-profiling==1.7.0
1010
tzlocal
11-
invoke==2.0.0
11+
invoke==2.2.0
1212
twine==3.8.0
13+
setuptools

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[tox]
77
envlist =
88
py{38, 39, 310, 311}-flask2,
9-
py{311}-flask3
9+
py{311, 312}-flask3
1010
pypy3.8
1111
doc
1212

0 commit comments

Comments
 (0)