Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ jobs:
- tox:
env: py39
- coverage
py310:
executor: toxandnode
steps:
- checkout
- tox:
env: py310
- coverage
noanalysis:
executor: toxandnode
steps:
Expand Down Expand Up @@ -118,6 +125,13 @@ workflows:
branches:
ignore:
- gh-pages
- py310:
filters:
tags:
only: /^v.*/
branches:
ignore:
- gh-pages
- noanalysis:
filters:
tags:
Expand All @@ -138,6 +152,7 @@ workflows:
- py37
- py38
- py39
- py310
- lint_and_docs
filters:
tags:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def prerelease_local_scheme(version):
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=[
'girder-large-image-annotation',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{36,37,38,39}
py{36,37,38,39,310}
flake8
lintclient

Expand Down