From 84a4723eba9d1a27cb5ac434df6a7bbb19ba3be6 Mon Sep 17 00:00:00 2001 From: Heinz-Alexander Fuetterer Date: Wed, 18 Sep 2024 10:18:55 +0200 Subject: [PATCH] ci: add python 3.13-dev to test matrix --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58c4865cf2..aa2b8d31cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,6 +107,12 @@ jobs: matrix: python-version: ['3.8', '3.12'] db-backend: [mysql, postgres] + # test Python 3.13 already + # release is scheduled for 2024-10-01 (https://peps.python.org/pep-0719/) + # when released: replace "python-version: ['3.8', '3.12']" with python-version: ['3.8', '3.13'] + include: + - python-version: '3.13-dev' + db-backend: postgres steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}