Skip to content

Commit dcbc1e1

Browse files
Drops old pythons.
Co-authored-by: Piotr Kaznowski <piotr@kazno.dev>
1 parent c605b4e commit dcbc1e1

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
10+
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
1111

1212
name: Python ${{ matrix.python-version }}
1313
steps:

pyproject.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
11
[project]
22
name = "snakesay"
3-
version = "0.10.3"
3+
version = "0.10.4"
44
description = "speaking snake"
55
authors = [
66
{ name="PythonAnywhere Developers", email="developers@pythonanywhere.com" }
77
]
88
license = {text="MIT"}
99
readme = "README.md"
10-
requires-python = ">=3.7"
10+
requires-python = ">=3.10"
1111
classifiers = [
1212
"Programming Language :: Python :: 3.13",
1313
"Programming Language :: Python :: 3.12",
1414
"Programming Language :: Python :: 3.11",
1515
"Programming Language :: Python :: 3.10",
16-
"Programming Language :: Python :: 3.9",
17-
"Programming Language :: Python :: 3.8",
18-
"Programming Language :: Python :: 3.7",
1916
"License :: OSI Approved :: MIT License",
2017
"Operating System :: OS Independent",
2118
]
@@ -24,6 +21,6 @@ classifiers = [
2421
snakesay = "snakesay.snakesay:main"
2522

2623
[build-system]
27-
requires = ["setuptools>=61.0"]
24+
requires = ["setuptools>=77.0.3", "wheel"]
2825
build-backend = "setuptools.build_meta"
2926

0 commit comments

Comments
 (0)