summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-06-27 23:17:10 -0700
committerMaximilian Hils <git@maximilianhils.com>2016-06-27 23:17:10 -0700
commitc17907e7244a2e6a87a090cadfea1b45cbb6cea7 (patch)
tree5ff8734982653245253e316987b05823fb87422d
parentdc410c112d4a32b2ab2088a434a92496180edafa (diff)
downloadpython-lxml-c17907e7244a2e6a87a090cadfea1b45cbb6cea7.tar.gz
point latest builds to static binaries
see https://github.com/lxml/lxml/pull/196
-rw-r--r--buildlibxml.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildlibxml.py b/buildlibxml.py
index cb3ddf24..5b67132f 100644
--- a/buildlibxml.py
+++ b/buildlibxml.py
@@ -39,12 +39,12 @@ def download_and_extract_zlatkovic_binaries(destdir):
assert fn.endswith('.win32.zip')
libs[libname] = fn
else:
- url = "https://github.com/mhils/libxml2-win-binaries/releases/download/2016.06.27/"
+ url = "https://github.com/mhils/libxml2-win-binaries/releases/download/lxml/"
libs = dict(
- libxml2 = "libxml2-2.9.4.win32.zip",
- libxslt = "libxslt-1.1.27.win32.zip",
- zlib = "zlib-1.2.5.win32.zip",
- iconv = "iconv-1.14.win32.zip",
+ libxml2 = "libxml2-latest.win32.zip",
+ libxslt = "libxslt-latest.win32.zip",
+ zlib = "zlib-latest.win32.zip",
+ iconv = "iconv-latest.win32.zip",
)
if not os.path.exists(destdir): os.makedirs(destdir)