mirror of
https://github.com/quantum5/win2xcur.git
synced 2025-04-24 02:01:57 -04:00
Deal with Python 3.7 not having the right types
This commit is contained in:
parent
a89e52a286
commit
99ff1bb1ba
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
@ -9,7 +9,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
|
||||
python-version: [ 3.7, 3.8, 3.9, '3.10' ]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
|
@ -32,6 +32,7 @@ jobs:
|
|||
- name: Lint with flake8
|
||||
run: flake8 .
|
||||
- name: Typecheck with mypy
|
||||
if: matrix.python-version != 3.7
|
||||
run: mypy .
|
||||
- name: Test packages
|
||||
run: python setup.py sdist bdist_wheel
|
||||
|
|
Loading…
Reference in a new issue