From 6c598cffbd7262dad5b59b45d7d8240b487c2f65 Mon Sep 17 00:00:00 2001 From: Janek Groehl Date: Tue, 18 Nov 2025 10:13:47 +0100 Subject: [PATCH 1/3] Bump tested python versions to 3.10-3.13 --- .github/workflows/automatic_testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/automatic_testing.yml b/.github/workflows/automatic_testing.yml index 63cf84e8..02b39fb2 100644 --- a/.github/workflows/automatic_testing.yml +++ b/.github/workflows/automatic_testing.yml @@ -23,7 +23,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] os: [ubuntu-latest, macos-latest, windows-latest] steps: From f25e5e58fa6e771a5f53d4498187af75daa76337 Mon Sep 17 00:00:00 2001 From: Janek Groehl Date: Tue, 18 Nov 2025 10:22:26 +0100 Subject: [PATCH 2/3] Require >= 3.10 as 3.9 is EOL --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 65100c0d..08fe5571 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ description = "Simulation and Image Processing for Photonics and Acoustics" license = {text = "MIT"} readme = "README.md" keywords = ["simulation", "photonics", "acoustics"] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "matplotlib>=3.5.0", # Uses PSF-License (MIT compatible) "numpy>=1.21.4", # Uses BSD-License (MIT compatible) From bae92457e7d7f83971b89c408ea951b87a63378b Mon Sep 17 00:00:00 2001 From: Janek Groehl Date: Tue, 18 Nov 2025 10:27:46 +0100 Subject: [PATCH 3/3] Include the newly released 3.14 into the tested version --- .github/workflows/automatic_testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/automatic_testing.yml b/.github/workflows/automatic_testing.yml index 02b39fb2..de03a00b 100644 --- a/.github/workflows/automatic_testing.yml +++ b/.github/workflows/automatic_testing.yml @@ -23,7 +23,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] os: [ubuntu-latest, macos-latest, windows-latest] steps: