From 11789e3d3a1dcb787b2a2af89e17ab852cd6c31d Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sat, 7 Dec 2024 18:35:55 +0530 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Python=203.13=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pytest.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 954967a..95bc2c2 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -26,12 +26,13 @@ jobs: - { PYTHON_VERSION: '3.10' } - { PYTHON_VERSION: '3.11' } - { PYTHON_VERSION: '3.12' } + - { PYTHON_VERSION: '3.13' } steps: - name: "Checkout to repository" - uses: actions/checkout@v4.1.7 + uses: actions/checkout@v4.2.2 - name: "Setup Python" - uses: actions/setup-python@v5.1.1 + uses: actions/setup-python@v5.3.0 with: python-version: ${{ matrix.PYTHON_VERSION }} cache: 'pip' @@ -55,7 +56,7 @@ jobs: - name: Upload test results to Codecov if: ${{ !cancelled() }} - uses: codecov/test-results-action@v1.0.0 + uses: codecov/test-results-action@v1.0.1 with: token: ${{ secrets.CODECOV_TOKEN }}