Skip to content

Commit 6bfaeb3

Browse files
committed
Pillow requirement for > 3.6 mistakenly omitted
1 parent 30b4c7c commit 6bfaeb3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,12 @@
6363
print("Mathics does not support PyPy Python 3.6" % sys.version_info[:2])
6464
sys.exit(-1)
6565
else:
66-
INSTALL_REQUIRES += ["numpy<=1.24", "llvmlite", "sympy>=1.8, < 1.12"]
66+
INSTALL_REQUIRES += [
67+
"numpy<=1.24",
68+
"llvmlite",
69+
"sympy>=1.8, < 1.12",
70+
"pillow >= 9.2",
71+
]
6772

6873
# if not is_PyPy:
6974
# INSTALL_REQUIRES += ["recordclass"]

0 commit comments

Comments
 (0)