From 19e1e26d9736675dd46b2793efcf7969c0f50b22 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Thu, 27 May 2021 20:17:14 +0200 Subject: [PATCH] Add Python 3.10 build --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4e0dabc8..b5ff271f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 with: - python-version: 3.9 + python-version: 3.10 - run: python -m pip install --upgrade pip setuptools wheel - run: make install - run: make pycodestyle @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10] steps: - uses: actions/checkout@v1 - uses: actions/setup-python@v1