Skip to content

Commit 88fe228

Browse files
Add python3.10 to tox and workflow (#135)
Co-authored-by: Matthew Seal <[email protected]>
1 parent c62fc85 commit 88fe228

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8, 3.9]
16+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10.0-rc.2"]
1717
env:
1818
OS: ubuntu-latest
1919
PYTHON: "3.8"

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[tox]
22
skipsdist = true
3-
envlist = py{36,37,38,39}, flake8, dist, manifest, docs
3+
envlist = py{36,37,38,39,310}, flake8, dist, manifest, docs
44

55
[gh-actions]
66
python =
77
3.6: py36
88
3.7: py37
99
3.8: py38, flake8, dist, manifest
1010
3.9: py39
11+
3.10: py310
1112

1213
# Linters
1314
[testenv:flake8]
@@ -59,6 +60,7 @@ basepython =
5960
py37: python3.7
6061
py38: python3.8
6162
py39: python3.9
63+
py310: python3.10
6264
flake8: python3.8
6365
manifest: python3.8
6466
dist: python3.8

0 commit comments

Comments
 (0)