Skip to content

Commit d997852

Browse files
committed
Enable and fix tests on Python 3.10
from __future__ annotations are the default on Python 3.10 so the tricks we used to keep the test suite nice can no longer be applied. CI addition to make sure it stays compatible.
1 parent d053488 commit d997852

File tree

2 files changed

+230
-235
lines changed

2 files changed

+230
-235
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
11+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-alpha.5, pypy3]
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)