From 71ff6a8ee75c90a84e7b9d82c935de4fed0acaac Mon Sep 17 00:00:00 2001 From: Simon Perkins Date: Tue, 29 Oct 2024 12:29:49 +0200 Subject: [PATCH] Deprecate Python 3.9 support --- .github/workflows/ci.yml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9d638b3..33c6c1ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12"] steps: - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index 8866899f..6eaadb37 100644 --- a/setup.py +++ b/setup.py @@ -63,9 +63,9 @@ "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], description="Radio Astronomy Building Blocks", extras_require=extras_require, @@ -77,7 +77,7 @@ keywords="codex-africanus", name="codex-africanus", packages=find_packages(), - python_requires=">=3.9", + python_requires=">=3.10", setup_requires=setup_requirements, test_suite="tests", tests_require=test_requirements,