Skip to content

Commit 16d5568

Browse files
committed
Add Python 3.14 to the testing
1 parent 8937f97 commit 16d5568

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,24 @@ jobs:
1515
- { VERSION: "3.11", TOXENV: "py311,pep8,pre-commit", ALLOW_FAILURE: false }
1616
- { VERSION: "3.12", TOXENV: "py312",ALLOW_FAILURE: false }
1717
- { VERSION: "3.13", TOXENV: "py313",ALLOW_FAILURE: false }
18-
- { VERSION: "pypy3.10", TOXENV: "pypy", ALLOW_FAILURE: false }
18+
- { VERSION: "3.14", TOXENV: "py314",ALLOW_FAILURE: false }
19+
- { VERSION: "pypy3.11", TOXENV: "pypy", ALLOW_FAILURE: false }
1920

2021
steps:
2122
- name: Check out the repository
22-
uses: actions/checkout@v4.0.0
23+
uses: actions/checkout@v6.0.0
2324
- name: Setup Python
24-
uses: actions/setup-python@v4.7.0
25+
uses: actions/setup-python@v6.0.0
2526
with:
2627
python-version: ${{ matrix.PYTHON.VERSION }}
2728
allow-prereleases: true
2829
- name: Upgrade pip
2930
run: |
30-
pip install -U pip
31+
pip install --upgrade pip
3132
pip --version
3233
- name: Install Tox
3334
run: |
34-
pip install -U tox
35+
pip install --upgrade tox
3536
tox --version
3637
- name: Run Tox
3738
run: tox

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ envlist =
66
py311,
77
py312,
88
py313,
9+
py314,
910
pep8,
1011

1112
[testenv]

0 commit comments

Comments
 (0)