From a21e39dbed8885d328c33134603225dd99bfd7d4 Mon Sep 17 00:00:00 2001 From: gabino Date: Fri, 7 Feb 2025 16:18:47 -0600 Subject: [PATCH] Update Python version to 3.13 in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 798e946..0ef7c50 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ SHELL := bash PATH := ./venv/bin:${PATH} -PYTHON=python3.11 +PYTHON=python3.13 PROJECT=cep isort = isort $(PROJECT) tests setup.py -black = black -S -l 79 --target-version py311 $(PROJECT) tests setup.py +black = black -S -l 79 --target-version py313 $(PROJECT) tests setup.py .PHONY: all all: testt