From fb6236a0f55f7612eebc89f2f41afc2693aa1e6a Mon Sep 17 00:00:00 2001 From: ruki Date: Sat, 4 May 2019 22:57:39 +0800 Subject: [PATCH] fix python urls --- packages/p/python/xmake.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/p/python/xmake.lua b/packages/p/python/xmake.lua index 66a0c0026..7e305de5f 100644 --- a/packages/p/python/xmake.lua +++ b/packages/p/python/xmake.lua @@ -6,7 +6,7 @@ package("python") if is_host("windows") then if os.arch() == "x64" then - add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).arm64.zip", {alias = "py2"}) + add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).amd64.zip", {alias = "py2"}) add_versions("py2:2.7.15", "b9d8157fe2ca58f84d29a814bedf1d304d2277ad02f0930acd22e2ce7367b77e") else add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).win32.zip", {alias = "py2"}) @@ -22,7 +22,7 @@ package("python") end else if os.arch() == "x64" then - add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).arm64.zip", {alias = "py3"}) + add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).amd64.zip", {alias = "py3"}) add_versions("py3:3.3.4", "a83bf90b28f8b44b99c3524a34ab18f21a59999e07c107da19b031869fb42af1") else add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).win32.zip", {alias = "py3"})