Skip to content

Commit d2ee5f8

Browse files
authored
Merge pull request #124 from DigitalSlideArchive/test-python310
Test on Python 3.10.
2 parents 199fe1d + 7051487 commit d2ee5f8

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.circleci/config.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,13 @@ jobs:
6262
- tox:
6363
env: py39
6464
- coverage
65+
py310:
66+
executor: toxandnode
67+
steps:
68+
- checkout
69+
- tox:
70+
env: py310
71+
- coverage
6572
noanalysis:
6673
executor: toxandnode
6774
steps:
@@ -118,6 +125,13 @@ workflows:
118125
branches:
119126
ignore:
120127
- gh-pages
128+
- py310:
129+
filters:
130+
tags:
131+
only: /^v.*/
132+
branches:
133+
ignore:
134+
- gh-pages
121135
- noanalysis:
122136
filters:
123137
tags:
@@ -138,6 +152,7 @@ workflows:
138152
- py37
139153
- py38
140154
- py39
155+
- py310
141156
- lint_and_docs
142157
filters:
143158
tags:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def prerelease_local_scheme(version):
3939
'Programming Language :: Python :: 3.7',
4040
'Programming Language :: Python :: 3.8',
4141
'Programming Language :: Python :: 3.9',
42+
'Programming Language :: Python :: 3.10',
4243
],
4344
install_requires=[
4445
'girder-large-image-annotation',

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{36,37,38,39}
3+
py{36,37,38,39,310}
44
flake8
55
lintclient
66

0 commit comments

Comments
 (0)