Skip to content

Commit e5050ac

Browse files
committed
debug grab of binary releases in g2pkg
1 parent 3e4762e commit e5050ac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

install/g2pkg/makeBldFiles.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,14 @@ def getGitBinaryReleases(cache=False):
105105
try:
106106
r = requests.get(URL, allow_redirects=True)
107107
for line in r.text.split('\n'):
108+
print(line)
108109
key,val = line.split(':',1)[:2]
109110
res[key.strip()] = val.strip()
110111
fp.close()
111112
return res
112113
except:
113-
raise IOError('Cache read of releases failed too.')
114+
print('Cache read of releases failed too.')
115+
return None
114116

115117
def getNewestVersions():
116118
'''get the latest Python & numpy versions with supplied binaries,

0 commit comments

Comments
 (0)