Skip to content

Commit

Permalink
Enable and fix tests on Python 3.10
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jstasiak committed Feb 11, 2021
1 parent d053488 commit d997852
Show file tree
Hide file tree
Showing 2 changed files with 230 additions and 235 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-alpha.5, pypy3]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit d997852

Please sign in to comment.