From 95ee5f64d6a7611772bd85aed70796d423b37a01 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Sat, 23 Oct 2021 12:39:36 +0300 Subject: Add support for Python 3.10 (#1917) * Add support for Python 3.10 * Drop the dot https://twitter.com/pytestdotorg/status/753767547866972160 --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ca254229..a598a0cc 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3] + python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"] max-parallel: 4 steps: @@ -26,7 +26,7 @@ jobs: run: make test TEST=-v if: runner.os == 'Linux' - name: Test package - run: py.test + run: pytest if: runner.os == 'Windows' && ! contains(matrix['python-version'], 'pypy') check: -- cgit v1.2.1