diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-03 10:06:27 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-03 10:06:29 +0100 |
commit | 30f7e8c94a4dc8c0a9f4902a95f48fd59280e462 (patch) | |
tree | 1ca48dadcb023e28f8958c572477dc4f1f50b6a2 /.github/workflows/ci.yml | |
parent | get rid of requirements.txt (diff) | |
download | vk-scripts-30f7e8c94a4dc8c0a9f4902a95f48fd59280e462.tar.gz vk-scripts-30f7e8c94a4dc8c0a9f4902a95f48fd59280e462.zip |
workflows/ci: drop Python 3.4-3.6
setuptools 61 requires Python 3.7 or higher.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 745c1f8..42f1d02 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', '3.11'] + python-version: ['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. |