Skip to content

Commit a979718

Browse files
committed
Test on Python 3.13.
1 parent 6a17da6 commit a979718

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,16 @@ jobs:
147147
- tox:
148148
env: py312
149149
- coverage
150+
py313:
151+
machine:
152+
image: ubuntu-2204:current
153+
steps:
154+
- checkout
155+
- allservices:
156+
version: "3.13"
157+
- tox:
158+
env: py313
159+
- coverage
150160
small-docker:
151161
machine:
152162
image: ubuntu-2004:202111-02
@@ -235,6 +245,13 @@ workflows:
235245
branches:
236246
ignore:
237247
- gh-pages
248+
- py313:
249+
filters:
250+
tags:
251+
only: /^v.*/
252+
branches:
253+
ignore:
254+
- gh-pages
238255
- lint_and_docs:
239256
filters:
240257
tags:
@@ -263,6 +280,7 @@ workflows:
263280
- py310
264281
- py311
265282
- py312
283+
- py313
266284
- lint_and_docs
267285
filters:
268286
tags:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def prerelease_local_scheme(version):
5050
'Programming Language :: Python :: 3.10',
5151
'Programming Language :: Python :: 3.11',
5252
'Programming Language :: Python :: 3.12',
53+
'Programming Language :: Python :: 3.13',
5354
],
5455
include_package_data=True,
5556
package_dir={'girder_slicer_cli_web': 'slicer_cli_web'},

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{38,39,310,311,312}
3+
py{38,39,310,311,312,313}
44
flake8
55
lintclient
66
[testenv]

0 commit comments

Comments
 (0)