Skip to content

Commit aac8df5

Browse files
mgornysaghul
authored andcommitted
Enable testing on 3.10-dev
1 parent 1462866 commit aac8df5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-20.04, windows-2019, macos-10.15]
13-
python-version: [ '3.6', '3.7', '3.8', '3.9', 'pypy-3.6', 'pypy-3.7' ]
13+
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10-dev', 'pypy-3.6', 'pypy-3.7' ]
14+
exclude:
15+
- os: windows-2019
16+
python-version: 3.10-dev
1417
steps:
1518
- uses: actions/checkout@v2
1619
with:
@@ -19,6 +22,8 @@ jobs:
1922
uses: actions/setup-python@v2
2023
with:
2124
python-version: ${{ matrix.python-version }}
25+
- name: Install wheel
26+
run: pip install wheel
2227
- name: Build package
2328
run: python setup.py install
2429
- name: Run tests

0 commit comments

Comments
 (0)