From 99ff1bb1ba1c71b3b023c5ba6fdbb2bd1b0c0c95 Mon Sep 17 00:00:00 2001 From: Quantum Date: Thu, 17 Mar 2022 01:50:30 -0400 Subject: [PATCH] Deal with Python 3.7 not having the right types --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 39edab5..a215f20 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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