From 152cc96b0237457cf8022e4a95ce3f843892a951 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 2 Dec 2022 13:52:03 -0700 Subject: [PATCH] .github: Test with more Python versions Signed-off-by: Zack Cerza --- .github/workflows/ci.yml | 2 +- .github/workflows/dependencies.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1875598fde..c93bb760dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python: [3.6, 3.9] + python: ['3.6', '3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 - name: Setup Python diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 9417e9f668..667bf6d7b1 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python: [3.6, 3.8] + python: ['3.6', '3.7', '3.8', '3.9', '3.10'] steps: - name: Set up Python uses: actions/setup-python@v3 -- 2.39.5