Skip to content
This repository was archived by the owner on Jul 5, 2023. It is now read-only.

Commit 6df7335

Browse files
committed
Add support for Python 3.10
1 parent 3a2053f commit 6df7335

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]
14+
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
1515
architecture: ["x86", "x64"]
1616
os: [windows-latest]
1717

.travis.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ arch:
1616
- arm64
1717

1818
python:
19-
- 3.5
20-
- 3.6
21-
- 3.7
22-
- 3.8
23-
- 3.9-dev
19+
- "3.5"
20+
- "3.6"
21+
- "3.7"
22+
- "3.8"
23+
- "3.9"
24+
- "3.10-dev"
2425

2526
script:
2627
- pytest

0 commit comments

Comments
 (0)