Skip to content

Commit

Permalink
Merge pull request spyder-ide#5 from conradolandia/windows-link
Browse files Browse the repository at this point in the history
Fix Windows and macOS download URLs
  • Loading branch information
ccordoba12 committed Sep 4, 2024
2 parents d59dc52 + 22ad515 commit 5c958d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,17 @@ export const releases = {
windows: {
x64: {
name: "Windows 10+",
link: "https://github.com/spyder-ide/spyder/releases/latest/download/Spyder_64bit_full.exe",
link: "https://github.com/spyder-ide/spyder/releases/latest/download/Spyder-Windows-x86_64.exe",
},
},
mac: {
arm64: {
name: "macOS (M1)",
link: "https://github.com/spyder-ide/spyder/releases/latest/download/Spyder_arm64.dmg",
link: "https://github.com/spyder-ide/spyder/releases/latest/download/Spyder-macOS-arm64.pkg",
},
x64: {
name: "macOS (Intel)",
link: "https://github.com/spyder-ide/spyder/releases/latest/download/Spyder.dmg",
link: "https://github.com/spyder-ide/spyder/releases/latest/download/Spyder-macOS-x86_64.pkg",
},
},
};
Expand Down

0 comments on commit 5c958d2

Please sign in to comment.