Skip to content

Commit 3b03b63

Browse files
committed
update test matrix to include python 3.13
1 parent 828d8c0 commit 3b03b63

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/test.yml

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

3+
# note: when updating the matrix, make sure the `workflow_dispatch` and `generate-matrix` entries match
4+
35
on:
46
workflow_dispatch:
57
inputs:
@@ -15,13 +17,12 @@ on:
1517
python_version:
1618
type: choice
1719
description: Python version to test with
18-
default: '3.12'
20+
default: '3.13'
1921
options:
2022
- 'all'
2123
- '3.9'
22-
- '3.10'
23-
- '3.11'
24-
- '3.12'
24+
- '3.13'
25+
- '3.13t'
2526
- 'pypy3.9'
2627
- 'pypy3.10'
2728
test_specification:
@@ -57,9 +58,8 @@ jobs:
5758
- windows-latest
5859
PYTHON_VERSION: |
5960
- '3.9'
60-
- '3.10'
61-
- '3.11'
62-
- '3.12'
61+
- '3.13'
62+
- '3.13t'
6363
- 'pypy3.9'
6464
- 'pypy3.10'
6565
steps:

Contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ a PR, but generally stick to conforming to the suggested linter rules.
5050
2. Update `Changelog.md` to reflect the new changes.
5151
3. Check out the commit you want to make a release from.
5252
4. Run `git tag <version>` e.g. `git tag v0.1.0`.
53-
5. Run `git push origin <version>` e.g. `git tag v0.1.0`.
53+
5. Run `git push origin <version>` e.g. `git push origin v0.1.0`.
5454
- This will trigger the 'release' github action which will upload to PyPi.

0 commit comments

Comments
 (0)