Skip to content

Commit e2f53cf

Browse files
author
Fabien Coelho
committed
more python versions
1 parent 929f154 commit e2f53cf

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/package.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,20 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ["3.10", "3.11", "3.12", "3.13", "pypy3.10"]
13+
python:
14+
- version: "pypy3.10"
15+
- version: "pypy3.11"
16+
- version: "3.10"
17+
- version: "3.11"
18+
- version: "3.12"
19+
- version: "3.13"
20+
- version: "3.14"
1421
steps:
1522
- uses: actions/checkout@v4
16-
- name: Set up Python ${{ matrix.python-version }}
23+
- name: Set up Python ${{ matrix.python.version }}
1724
uses: actions/setup-python@v5
1825
with:
19-
python-version: ${{ matrix.python-version }}
26+
python-version: ${{ matrix.python.version }}
2027
allow-prereleases: true
2128
- name: Install Python Dependencies
2229
run: make VENV= venv

docs/versions.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ please report any [issues](https://github.com/zx80/flask-tester/issues).
1313

1414
## ? on ?
1515

16-
Slightly improve documentation.
1716
Add `setHook`.
17+
Activate _Pypy 3.11_ and _Python 3.14_ in GitHub CI.
18+
Slightly improve documentation.
1819
Add some tests.
1920

2021
## 4.3 on 2024-08-10

0 commit comments

Comments
 (0)