Skip to content

Commit 7169c5f

Browse files
Drop Python 3.8 support (#140)
1 parent b71888f commit 7169c5f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu, macos, windows]
1515
python-version:
16-
["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.8", "pypy-3.9"]
16+
["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9", "pypy-3.10"]
1717

1818
steps:
1919
- uses: actions/checkout@v4

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "lazy_loader"
7-
requires-python = ">=3.8"
7+
requires-python = ">=3.9"
88
authors = [{name = "Scientific Python Developers"}]
99
readme = "README.md"
1010
license = {file = "LICENSE.md"}
@@ -13,7 +13,6 @@ classifiers = [
1313
"Development Status :: 4 - Beta",
1414
"License :: OSI Approved :: BSD License",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)