From 9ae841a0e4e790dbd3f911c4acdcbbffe522ac3a Mon Sep 17 00:00:00 2001 From: John-Paul Dakran Date: Wed, 26 Jan 2022 10:07:34 -0500 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed7a86ca9..d59e696b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,12 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python: ['3.6', '3.7'] + python: ['3.6', '3.7', '3.8', '3.9'] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - - run: python -mpip install --upgrade setuptools pip tox virtualenv + - run: python -m pip install --upgrade setuptools pip tox virtualenv - run: tox -e py - run: tox -e mypy