From 9abaa8b3f6035932f5335b16bd476de37830620c Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Mon, 13 Jun 2022 06:59:35 -0700 Subject: [PATCH] Change supported Python versions in github actions (#416) --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0237da2..2009bf8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,17 +13,16 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [2.7, 3.6, 3.7, 3.8] + python-version: [2.7, 3.7, 3.9] os: [ubuntu-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Test run: | python test/all_tests.py - -- 2.30.2