Skip to content

Commit 24b10a3

Browse files
committed
Python 3.10 tests
1 parent c84fd05 commit 24b10a3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: tests
23

34
on:
@@ -12,7 +13,7 @@ jobs:
1213
runs-on: ubuntu-latest
1314
strategy:
1415
matrix:
15-
python: [3.6, 3.7, 3.8, 3.9]
16+
python: [3.6, 3.7, 3.8, 3.9, 3.10]
1617

1718
steps:
1819
- uses: actions/checkout@v2

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.7",
1616
"Programming Language :: Python :: 3.8",
1717
"Programming Language :: Python :: 3.9",
18+
"Programming Language :: Python :: 3.10",
1819
"Programming Language :: Python :: Implementation :: CPython",
1920
"License :: OSI Approved :: MIT License",
2021
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -72,7 +73,7 @@ doctest_optionflags= "ALLOW_UNICODE IGNORE_EXCEPTION_DETAIL ELLIPSIS"
7273
legacy_tox_ini = """
7374
[tox]
7475
isolated_build = true
75-
envlist = doc,py36,py37,py38,py39,coverage
76+
envlist = doc,py36,py37,py38,py39,py310,coverage
7677
skipsdist=true
7778
7879
[testenv]

0 commit comments

Comments
 (0)