From bd4789c5677badf1acda72fa06ef62e51bc1e2f4 Mon Sep 17 00:00:00 2001 From: "Patrick J. Roddy" Date: Tue, 8 Oct 2024 10:34:59 +0100 Subject: [PATCH] Drop `python==3.10` support (#418) SPEC0 recommended https://scientific-python.org/specs/spec-0000/#2024---quarter-4 --- .github/workflows/test.yaml | 3 --- pyproject.toml | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 225cd438..90f00510 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -19,7 +19,6 @@ jobs: - macos-latest - ubuntu-latest python-version: - - "3.10" - "3.11" - "3.12" steps: @@ -52,8 +51,6 @@ jobs: parallel-finished: true # yamllint disable-line rule:quoted-strings carryforward: "\ - run-macos-latest-3.10,\ - run-ubuntu-latest-3.10,\ run-macos-latest-3.11,\ run-ubuntu-latest-3.11,\ run-macos-latest-3.12,\ diff --git a/pyproject.toml b/pyproject.toml index 27711b04..96d2056e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,6 @@ classifiers = [ "Operating System :: POSIX", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Image Processing", @@ -71,7 +70,7 @@ optional-dependencies = {dev = [ "pytest-xdist", ]} readme = "README.md" -requires-python = ">=3.10" +requires-python = ">=3.11" scripts = {mesh = """\ sleplet._scripts.plotting_on_mesh:main\ """, sphere = """\ @@ -211,7 +210,6 @@ overrides."tool.ruff.lint.isort.section-order".inline_arrays = false legacy_tox_ini = """ [gh-actions] python = - 3.10: py310 3.11: py311 3.12: py312