Skip to content

Commit 33f5afa

Browse files
committed
fix(tests): Run tests on PR, and add support for 3.13, 3.14
1 parent a93c58e commit 33f5afa

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
push:
88
branches: [ "master" ]
99
pull_request:
10-
branches: [ "master" ]
1110

1211
permissions:
1312
contents: read
@@ -17,7 +16,7 @@ jobs:
1716
strategy:
1817
matrix:
1918
os: [ubuntu-latest, macos-latest, windows-latest]
20-
python: ["3.9", "3.10", "3.11","3.12"]
19+
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2120
runs-on: ${{ matrix.os }}
2221
steps:
2322
- uses: actions/checkout@v3

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
15-
python: ["3.9", "3.10", "3.11", "3.12"]
15+
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ classifiers = [
1818
"Programming Language :: Python :: 3.10",
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2123
"Programming Language :: Python :: Implementation :: PyPy",
2224
"License :: OSI Approved :: MIT License",
2325
]

0 commit comments

Comments
 (0)