From aa53e3b95b6a68ea995a6b6a360512d4f18f43c7 Mon Sep 17 00:00:00 2001 From: Carlos Cordoba Date: Mon, 9 May 2022 12:20:01 -0500 Subject: [PATCH] Drop Python 3.6 on CIs That version reached end-of-life in December, so we don't need to test against it anymore. --- .github/workflows/static.yml | 2 +- .github/workflows/test-linux.yml | 2 +- .github/workflows/test-mac.yml | 2 +- .github/workflows/test-win.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index f60bb1b..4db28b1 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -28,7 +28,7 @@ jobs: with: # TODO: check with Python 3, but need to fix the # errors first - python-version: '3.6' + python-version: '3.8' architecture: 'x64' - run: python -m pip install --upgrade pip setuptools - run: pip install -e .[test] diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index 00299b5..71e6cb5 100644 --- a/.github/workflows/test-linux.yml +++ b/.github/workflows/test-linux.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6'] + PYTHON_VERSION: ['3.10', '3.9', '3.8', '3.7'] timeout-minutes: 10 steps: - uses: actions/cache@v1 diff --git a/.github/workflows/test-mac.yml b/.github/workflows/test-mac.yml index c362753..13d5c6c 100644 --- a/.github/workflows/test-mac.yml +++ b/.github/workflows/test-mac.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6'] + PYTHON_VERSION: ['3.10', '3.9', '3.8', '3.7'] timeout-minutes: 10 steps: - uses: actions/cache@v1 diff --git a/.github/workflows/test-win.yml b/.github/workflows/test-win.yml index 0902f55..2aa241c 100644 --- a/.github/workflows/test-win.yml +++ b/.github/workflows/test-win.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6'] + PYTHON_VERSION: ['3.10', '3.9', '3.8', '3.7'] timeout-minutes: 10 steps: - uses: actions/cache@v1