From cdba15c1ea5405a6e062f8ce3918d05e330c6512 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier <mgautier@kymeria.fr> Date: Fri, 8 Dec 2023 15:59:18 +0100 Subject: [PATCH] Python 3.7 is not supported. Assignement expression[*] is new in python 3.8 And python 3.7 is already end of life. Also add testing on 3.12. [*]https://docs.python.org/3/whatsnew/3.8.html#assignment-expressions --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f8811f4e..7b73f24a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 3 matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - name: checkout