From bba685ecc5a8ecc3071600a6bc37a2d62a73d512 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 3 Mar 2023 09:55:59 +0100 Subject: workflows/ci: fix Python versions --- .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 5322089..f1555d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: test: strategy: matrix: - python-version: ['3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] # Random number to prevent exceeding the request frequency limit. max-parallel: 3 # 3.4 is not available on Focal. @@ -47,7 +47,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: '3.x' - name: Verify package can be installed run: pip install -q . - name: Install package builder -- cgit v1.2.3