We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9446d5 commit ca67ddaCopy full SHA for ca67dda
pyproject.toml
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
[project]
6
name = "gcode-thumbnail-tool"
7
description = "A small tool to analyse and extract thumbnails rendered into GCODE files"
8
-version = "0.1.1"
+version = "0.1.2"
9
readme = {file = "README.md", content-type = "text/markdown"}
10
license = "AGPL-3.0-or-later"
11
license-files = ["LICENSE.txt"]
@@ -19,7 +19,8 @@ maintainers = [
19
]
20
21
dependencies = [
22
- "Pillow>=11.3",
+ "Pillow>=11.3 ; python_version>='3.10'",
23
+ "Pillow==11.2.1 ; python_version<='3.9'" # this version should still have wheels on piwheels
24
25
requires-python = ">= 3.9"
26
0 commit comments