From c4a066068bf2208f970a3774cba7cf190764930d Mon Sep 17 00:00:00 2001 From: Technici4n <13494793+Technici4n@users.noreply.github.com> Date: Thu, 7 Nov 2024 10:32:33 +0100 Subject: [PATCH] Bump min Python to 3.9. Run tests again 3.12 and 3.13 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 80c1e45..eec89b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] services: postgres: diff --git a/pyproject.toml b/pyproject.toml index b90865e..c673c84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,10 +14,11 @@ classifiers = [ 'Framework :: AiiDA', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.11' + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ] keywords = ['aiida', 'workflows'] requires-python = '>=3.8'