From b2f800d25c9bedde23a9d85f8c6e837ce157fdbf Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Wed, 15 May 2024 16:05:25 -0400 Subject: [PATCH] Test webhook against newer Python We are running the server on F39, which has Python 3.12, so we should be testing there, instead of the older 3.9/3.10. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dbc848b..ce4018f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10"] + python-version: ["3.11", "3.12"] steps: - uses: actions/checkout@v3