From d5647e6ddee6dc9e2161c35db06802e36b96dcbb Mon Sep 17 00:00:00 2001 From: Bastien Gerard Date: Mon, 11 Aug 2025 22:36:31 +0200 Subject: [PATCH] deprecate eol & upgrade python --- .github/workflows/github-actions.yml | 6 +++--- Makefile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 967d2cf..435a576 100755 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - run: bash .github/workflows/install_ci_python_dep.sh - run: pre-commit run -a @@ -31,7 +31,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, "3.10", 3.11, pypy3.9] + python-version: ["3.10", 3.11, 3.12, 3.13, pypy3.11] steps: - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} @@ -54,7 +54,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: build wheel run: | pip install wheel diff --git a/Makefile b/Makefile index 903333e..a879a66 100755 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ MAKEFLAGS += --silent .PHONY: setup-venv -PYTHON_VERSION = "3.10.9" +PYTHON_VERSION = "3.12" VENV_NAME := $(shell cat .python-version)