diff --git a/installers-conda/build_installers.py b/installers-conda/build_installers.py index 26d4263e979..d9c6c658325 100644 --- a/installers-conda/build_installers.py +++ b/installers-conda/build_installers.py @@ -155,7 +155,7 @@ if k == "spyder": SPYVER = v[-1] -OUTPUT_FILE = DIST / f"{APP}-{SPYVER}-{OS}-{ARCH}.{args.install_type}" +OUTPUT_FILE = DIST / f"{APP}-{OS}-{ARCH}.{args.install_type}" INSTALLER_DEFAULT_PATH_STEM = f"{APP.lower()}-{SPYVER.split('.')[0]}" WELCOME_IMG_WIN = BUILD / "welcome_img_win.png" diff --git a/spyder/plugins/updatemanager/widgets/update.py b/spyder/plugins/updatemanager/widgets/update.py index 7287af3dee6..9ca760e0c12 100644 --- a/spyder/plugins/updatemanager/widgets/update.py +++ b/spyder/plugins/updatemanager/widgets/update.py @@ -232,7 +232,7 @@ def _set_installer_path(self): plat, ext = 'Linux', 'sh' mach = platform.machine().lower().replace("amd64", "x86_64") - fname = f'Spyder-{self.latest_release}-{plat}-{mach}.{ext}' + fname = f'Spyder-{plat}-{mach}.{ext}' dirname = osp.join(get_temp_dir(), 'updates', self.latest_release) self.installer_path = osp.join(dirname, fname)