Skip to content

Commit e510b36

Browse files
authored
Add support for Python 3.15 (#439)
1 parent f96fefa commit e510b36

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: Tests
22

33
on: [push, pull_request, workflow_dispatch]
44

5-
permissions:
6-
contents: read
5+
permissions: {}
76

87
env:
98
FORCE_COLOR: 1
@@ -15,7 +14,7 @@ jobs:
1514
strategy:
1615
fail-fast: false
1716
matrix:
18-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
17+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
1918

2019
steps:
2120
- uses: actions/checkout@v6

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires =
33
tox>=4.2
44
env_list =
5-
py{314, 313, 312, 311, 310}
5+
py{315, 314, 313, 312, 311, 310}
66

77
[testenv]
88
deps =

0 commit comments

Comments
 (0)