From 478ce549039527001b9d0418ddda5091c75a6095 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Sat, 30 Oct 2021 12:07:09 +0200 Subject: [PATCH] CI: Update to codecov-action@v2, Python 3.10-dev to 3.10 On February 1, 2022, the codecov-action v1 will be end of life and not longer function. https://github.com/codecov/codecov-action/tree/v2.1.0#%EF%B8%8F--deprecration-of-v1. This commit updates the action to v2. Also, the Python 3.10-dev tag is replaced with 3.10 since it's in stable release now. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 46f927f..10cc2fa 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10-dev"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 @@ -42,4 +42,4 @@ jobs: pytest -raR -n auto --cov --cov-report= - name: Upload code coverage - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v2