Skip to content

Commit bae107e

Browse files
committed
Remove Imaging from the build product
1 parent b00e479 commit bae107e

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,6 @@ jobs:
6767
6868
shell: bash -l {0}
6969

70-
- name: Build Imaging
71-
run: |
72-
conda activate STUI
73-
wget https://src.fedoraproject.org/repo/pkgs/python-imaging/Imaging-1.1.7.tar.gz/fc14a54e1ce02a0225be8854bfba478e/Imaging-1.1.7.tar.gz
74-
tar xvf Imaging-1.1.7.tar.gz
75-
python Imaging-1.1.7/setup.py install
76-
rm -Rf Imaging*
77-
shell: bash -l {0}
78-
7970
- name: List environment
8071
run: |
8172
conda activate STUI

TUI/Help/VersionHistory.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ <h3>1.7.21 2025-02-18</h3>>
2020
<p>Visible changes:
2121
<ul>
2222
<li> Remove the APOGEE cold shutter control at LCO.
23+
<li> Remove Imaging from the build product.
2324
</ul>
2425

2526

TUI/TUIMenu/AboutWindow.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
"""
2525
import os.path
2626
import sys
27-
from PIL import Image
2827
import matplotlib
2928
import numpy
3029
try:
@@ -66,7 +65,6 @@ def getInfoDict():
6665
res["numpy"] = numpy.__version__
6766
res["astropy"] = astropyVers
6867
# Image uses VERSION, but PILLOW supports __version__
69-
res["pil"] = getattr(Image, "VERSION", getattr(Image, "__version__", "unknown"))
7068
res["pygame"] = pygameVersion
7169
res["specialFiles"] = getSpecialFileStr()
7270
return res
@@ -78,7 +76,7 @@ def strFromPath(filePath):
7876
if os.path.exists(filePath):
7977
return filePath
8078
return "%s (not found)" % (filePath,)
81-
79+
8280
outStrList = []
8381
for name, func in (
8482
("Preferences", TUI.TUIPaths.getPrefsFile),
@@ -99,7 +97,7 @@ def strFromPath(filePath):
9997
outStrList.append("Error Log: %s" % (sys.stderr.name,))
10098

10199
return "\n".join(outStrList)
102-
100+
103101

104102
class AboutWdg(RO.Wdg.StrLabel):
105103
def __init__(self, master):
@@ -120,7 +118,6 @@ def __init__(self, master):
120118
matplotlib: %(matplotlib)s
121119
numpy: %(numpy)s
122120
%(astropy)s
123-
PIL: %(pil)s
124121
pygame: %(pygame)s
125122
126123
With special thanks to:

0 commit comments

Comments
 (0)