From b59d22af557c115a69570b1ed730490dc5ee3412 Mon Sep 17 00:00:00 2001 From: PaulWestenthanner Date: Tue, 7 Jan 2025 17:50:07 +0100 Subject: [PATCH] Deprecate Python 3.9, add Python 3.13 --- .github/workflows/test-suite.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 2d9a9bab..6ccdec7c 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index 854b4c41..d2ff53eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = "BSD-3" readme = "README.md" [tool.poetry.dependencies] -python = ">=3.9" +python = ">=3.10" numpy = ">=1.14.0" scikit-learn = ">=1.0.0, <1.6.0" scipy = ">=1.0.0"