From b691e64c4328798d06c274fd9b9fd10fece29fbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Fri, 5 Nov 2021 12:26:51 +0100 Subject: [PATCH] Add Python 3.10 and 3.11 to GitHub Actions --- .github/workflows/tests.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index b00a86634..d15cafc06 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -27,6 +27,8 @@ jobs: - {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39} - {name: Windows, python: '3.9', os: windows-latest, tox: py39} - {name: Mac, python: '3.9', os: macos-latest, tox: py39} + - {name: '3.11', python: '3.11-dev', os: ubuntu-latest, tox: py311} + - {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310} - {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38} - {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37} - {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36}