diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-03 09:55:59 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-03 09:55:59 +0100 |
commit | bba685ecc5a8ecc3071600a6bc37a2d62a73d512 (patch) | |
tree | c431ef345c1242076c0428b35b7c063649a4812a | |
parent | workflows/ci: ignore changes in docs (diff) | |
download | vk-scripts-bba685ecc5a8ecc3071600a6bc37a2d62a73d512.tar.gz vk-scripts-bba685ecc5a8ecc3071600a6bc37a2d62a73d512.zip |
workflows/ci: fix Python versions
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files 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 |