Skip to content

Commit 9554246

Browse files
committed
Add support for Python 3.15
1 parent 4becd18 commit 9554246

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Test
22

3-
on:
4-
push:
5-
pull_request:
6-
workflow_dispatch:
3+
on: [push, pull_request, workflow_dispatch]
74

85
permissions: {}
96

@@ -15,10 +12,10 @@ jobs:
1512
name: Integration test
1613
runs-on: ubuntu-latest
1714
steps:
18-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1916
with:
2017
persist-credentials: false
21-
- uses: actions/setup-python@v5
18+
- uses: actions/setup-python@v6
2219
with:
2320
python-version: "3.13"
2421

@@ -40,7 +37,7 @@ jobs:
4037
--branches 3.14
4138
4239
- name: Upload documentation
43-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v6
4441
with:
4542
name: www-root
4643
path: ./www
@@ -52,16 +49,16 @@ jobs:
5249
strategy:
5350
fail-fast: false
5451
matrix:
55-
python-version: ["3.13", "3.14"]
52+
python-version: ["3.13", "3.14", "3.15"]
5653
os: [windows-latest, macos-latest, ubuntu-latest]
5754

5855
steps:
59-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v6
6057
with:
6158
persist-credentials: false
6259

6360
- name: Set up Python ${{ matrix.python-version }}
64-
uses: actions/setup-python@v5
61+
uses: actions/setup-python@v6
6562
with:
6663
python-version: ${{ matrix.python-version }}
6764
allow-prereleases: true

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires =
44
env_list =
55
cog
66
lint
7-
py{314, 313}
7+
py{315, 314, 313}
88

99
[testenv]
1010
package = wheel

0 commit comments

Comments
 (0)