From ee914aeb5982675ad6e383aad0bbc303f5357519 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Wed, 17 Sep 2025 14:06:08 +0200 Subject: [PATCH 1/2] maint: remove Python 3.8 from supported versions --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cf5917f5..05a3eea9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,6 @@ classifiers = [ "Topic :: Scientific/Engineering :: Image Recognition", "Topic :: Scientific/Engineering :: Bio-Informatics", "License :: OSI Approved :: Apache Software License", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -19,7 +18,6 @@ classifiers = [ dependencies = [ "acres", "dipy >= 1.10.0", - 'importlib_resources; python_version < "3.9"', # jinja2 imports deprecated function removed in 2.1 "markupsafe ~= 2.0.1", "matplotlib", "migas >= 0.4.0", From 1f0b6f2f589b22e706bd365a7d118fe1d107b6ac Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Wed, 17 Sep 2025 14:07:26 +0200 Subject: [PATCH 2/2] maint: add Python 3.13 to supported version --- .github/workflows/pythonpackage.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 1ec634f7..2cecea85 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 05a3eea9..452e7bc3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] dependencies = [ "acres",