Skip to content

Commit e48b903

Browse files
committed
Bump project version and require Python >= 3.10
* Remove 3.9 support in pyproject.toml (Pillow >= 12 requires it) * Remove 3.9 from the GitHub actions config
1 parent 08670e5 commit e48b903

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# 2. Avoid forward referencing whenever possible
2626
strategy:
2727
matrix:
28-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
28+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2929
architecture: ['x64']
3030
os: [ 'ubuntu-latest' ]
3131

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[project]
22
name = "fontknife"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
readme = "README.md"
55
description = "Rasterize only the glyphs you need."
66
authors = [
77
{name="pushfoo"}
88
]
99
license = {file = "LICENSE"}
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
classifiers=[
1212
"Development Status :: 3 - Alpha",
1313
"Programming Language :: Python :: 3",
14-
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)