From 794e85d6ac7248e2a73da743f7bb9e82530bfb61 Mon Sep 17 00:00:00 2001 From: Benjamin Hamon Date: Tue, 19 Aug 2025 18:40:12 +0200 Subject: [PATCH 1/2] Upgrade to Python 3.11 --- .github/workflows/develop.yaml | 2 +- .github/workflows/integration.yaml | 2 +- Automation/Scripts/pyproject.toml | 2 +- Sources/website/pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/develop.yaml b/.github/workflows/develop.yaml index 2b71aa9..8075f22 100644 --- a/.github/workflows/develop.yaml +++ b/.github/workflows/develop.yaml @@ -10,7 +10,7 @@ on: - develop env: - PYTHON_VERSION: "3.9" + PYTHON_VERSION: "3.11" diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index eee8766..b0c7d34 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -10,7 +10,7 @@ on: - develop env: - PYTHON_VERSION: "3.9" + PYTHON_VERSION: "3.11" diff --git a/Automation/Scripts/pyproject.toml b/Automation/Scripts/pyproject.toml index 7577ae8..6506575 100644 --- a/Automation/Scripts/pyproject.toml +++ b/Automation/Scripts/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" name = "automation-scripts" version = "1.0.0+development" description = "Automation scripts for the local project" -requires-python = ">= 3.9" +requires-python = ">= 3.11" authors = [ { name = "Benjamin Hamon", email = "development@benjaminhamon.com" } diff --git a/Sources/website/pyproject.toml b/Sources/website/pyproject.toml index 8200884..7edc213 100644 --- a/Sources/website/pyproject.toml +++ b/Sources/website/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" name = "benjaminhamon-developer-website" version = "5.2.0+development" description = "Developer website for Benjamin Hamon" -requires-python = ">= 3.9" +requires-python = ">= 3.11" authors = [ { name = "Benjamin Hamon", email = "development@benjaminhamon.com" } From 9c5cb002f834b36618813dd6e3bb61a1d7aedf98 Mon Sep 17 00:00:00 2001 From: Benjamin Hamon Date: Tue, 19 Aug 2025 18:41:56 +0200 Subject: [PATCH 2/2] Upgrade dependencies --- Sources/website/pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Sources/website/pyproject.toml b/Sources/website/pyproject.toml index 7edc213..83438d6 100644 --- a/Sources/website/pyproject.toml +++ b/Sources/website/pyproject.toml @@ -32,11 +32,11 @@ dependencies = [ [project.optional-dependencies] dev = [ "mockito ~= 1.5.4", - "pylint ~= 3.3.7", - "pytest ~= 8.4.0", - "pytest-asyncio ~= 1.0.0", + "pylint ~= 3.3.8", + "pytest ~= 8.4.1", + "pytest-asyncio ~= 1.1.0", "pytest-json ~= 0.4.0", - "requests ~= 2.32.4", + "requests ~= 2.32.5", ] [project.urls]