From 33ff87577b3e217d7f87a3c3d05fa08188123d2d Mon Sep 17 00:00:00 2001 From: Philippe MILINK Date: Sun, 3 Mar 2024 20:07:21 +0100 Subject: [PATCH] =?UTF-8?q?Met=20=C3=A0=20jour=20les=20versions=20Python?= =?UTF-8?q?=20support=C3=A9es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 3.11 est la version sur le serveur de production - Django 4.2 est compatible avec les version 3.8-3.12 --- .github/workflows/ci.yml | 2 +- doc/source/install/install-macos.rst | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51a718d274..91951fd6d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: env: NODE_VERSION: "18" # needs to be also updated in .nvmrc - PYTHON_VERSION: "3.9" + PYTHON_VERSION: "3.11" MARIADB_VERSION: "10.4.10" COVERALLS_VERSION: "3.3.1" # check if Coverage needs to be also updated in requirements-ci.txt TYPESENSE_VERSION: "27.0" # needs to be also updated in scripts/define_variable.sh diff --git a/doc/source/install/install-macos.rst b/doc/source/install/install-macos.rst index 93c762727d..4035367baa 100644 --- a/doc/source/install/install-macos.rst +++ b/doc/source/install/install-macos.rst @@ -37,7 +37,7 @@ Pré-requis Ces instructions expliquent comment installer XCode, Homebrew, Python, pip, et les utilitaires GNU, sur macOS. Si vous avez déjà : - - une installation fonctionnelle de Homebrew et de Python 3.7+ ; + - une installation fonctionnelle de Homebrew et de Python 3.8+ ; - configuré votre terminal pour utiliser les utilitaires GNU à la place de ceux de BSD (avec `linuxify `_, par exemple) ; diff --git a/pyproject.toml b/pyproject.toml index f9b6c6c860..ba1242091e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.black] line-length = 120 -target-version = ["py37", "py38", "py39", "py310"] +target-version = ["py38", "py39", "py310", "py311", "py312"] extend-exclude = """ ^/doc """