Skip to content

Commit cd60a2b

Browse files
committed
update
1 parent 78eac68 commit cd60a2b

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ body:
4646
- 3.10
4747
- 3.11
4848
- 3.12
49+
- 3.13
4950
- Other (specify below)
5051
validations:
5152
required: false

.github/workflows/preview-deployments.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: macos-13
2020
strategy:
2121
matrix:
22-
python-version: ["3.9", "3.10", "3.11", "3.12"]
22+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2323
steps:
2424
- uses: actions/checkout@v4
2525
- name: Install uv
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: windows-latest
5353
strategy:
5454
matrix:
55-
python-version: ["3.9", "3.10", "3.11", "3.12"]
55+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5656
target: [x64, x86]
5757
steps:
5858
- uses: actions/checkout@v4
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-latest
7979
strategy:
8080
matrix:
81-
python-version: ["3.9", "3.10", "3.11", "3.12"]
81+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
8282
target: [x86_64, i686]
8383
steps:
8484
- uses: actions/checkout@v4
@@ -111,6 +111,7 @@ jobs:
111111
{ version: "3.10", abi: "cp310-cp310" },
112112
{ version: "3.11", abi: "cp311-cp311" },
113113
{ version: "3.12", abi: "cp312-cp312" },
114+
{ version: "3.13", abi: "cp313-cp313" },
114115
]
115116
target: [aarch64, armv7]
116117
steps:

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import nox
44

55

6-
@nox.session(python=["3.9", "3.10", "3.11", "3.12"])
6+
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
77
def tests(session):
88
session.run("pip", "install", "poetry==1.3.0")
99
session.run(

0 commit comments

Comments
 (0)