Skip to content

Commit 88f47c7

Browse files
Drop Python 3.8 support (#275)
1 parent d566918 commit 88f47c7

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
test_spin:
2121
strategy:
2222
matrix:
23-
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
23+
python_version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2424
os: [ubuntu-latest, windows-latest, macos-latest]
2525
runs-on: ${{ matrix.os }}
2626
steps:

example_pkg_src/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "example_pkg"
33
version = "0.0dev0"
4-
requires-python = ">=3.7"
4+
requires-python = ">=3.9"
55
description = "spin Example Package"
66

77
[build-system]

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "spin"
3-
requires-python = ">=3.8"
3+
requires-python = ">=3.9"
44
description = "Developer tool for scientific Python libraries"
55
readme = "README.md"
66
license = {file = "LICENSE"}
@@ -15,7 +15,6 @@ classifiers = [
1515
"License :: OSI Approved :: BSD License",
1616
"Operating System :: OS Independent",
1717
"Programming Language :: Python :: 3",
18-
"Programming Language :: Python :: 3.8",
1918
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",

spin/cmds/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from __future__ import (
2-
annotations, # noqa: F401 # TODO: remove once only >3.8 is supported
2+
annotations, # noqa: F401 # TODO: remove once only >3.14 is supported
33
)
44

55
import copy

0 commit comments

Comments
 (0)