8000 remove SCITe and distname code · LeeXyan/winpython@b750a49 · GitHub
[go: up one dir, main page]

Skip to content

Commit b750a49

Browse files
committed
remove SCITe and distname code
1 parent ab0c44f commit b750a49

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

make.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,6 @@ def __init__(
247247
r"python-([0-9\.rcba]*)((\.|\-)amd64)?\.(zip|zip)"
248248
)
249249
self.python_name = Path(self.python_fname).name[:-4]
250-
self.distname = "winUNKNOWN"
251-
self.python_fullversion = "winUNKNOWN"
252250

253251
@property
254252
def package_index_wiki(self):
@@ -277,8 +275,6 @@ def get_tool_path_dir(relpath):
277275
if Path(path).is_dir():
278276
return path
279277

280-
if get_tool_path_file(r"\t\SciTE.exe"):
281-
installed_tools += [("SciTE", "3.3.7")]
282278
juliapath = get_tool_path_dir(self.JULIA_PATH)
283279
if juliapath is not None:
284280
juliaver = utils.get_julia_version(juliapath)
@@ -1448,11 +1444,9 @@ def make(
14481444
print(
14491445
self.python_fname,
14501446
self.python_name,
1451-
self.distname,
1452-
self.python_fullversion, # PyPy to delete or move
14531447
)
14541448
if my_winpydir is None:
1455-
self.winpydir = str(Path(self.target) / self.distname) # PyPy to delete
1449+
raise RuntimeError("WinPython base directory to create is undefined")
14561450
else:
14571451
self.winpydir = str(
14581452
Path(self.target) / my_winpydir

0 commit comments

Comments
 (0)
0