Skip to content

Commit ca67dda

Browse files
committed
deps(pillow): lower version on python 3.9
1 parent a9446d5 commit ca67dda

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "gcode-thumbnail-tool"
77
description = "A small tool to analyse and extract thumbnails rendered into GCODE files"
8-
version = "0.1.1"
8+
version = "0.1.2"
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
license = "AGPL-3.0-or-later"
1111
license-files = ["LICENSE.txt"]
@@ -19,7 +19,8 @@ maintainers = [
1919
]
2020

2121
dependencies = [
22-
"Pillow>=11.3",
22+
"Pillow>=11.3 ; python_version>='3.10'",
23+
"Pillow==11.2.1 ; python_version<='3.9'" # this version should still have wheels on piwheels
2324
]
2425
requires-python = ">= 3.9"
2526

0 commit comments

Comments
 (0)