From 817c7663d45bfc641d4c789ade834fd2c2f3702d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 5 Dec 2019 10:00:17 +0530 Subject: [PATCH] Make the built py3 sw available for CI --- setup/installers.py | 2 +- setup/win-ci.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/installers.py b/setup/installers.py index c3ad5bfe18..064f243c89 100644 --- a/setup/installers.py +++ b/setup/installers.py @@ -199,7 +199,7 @@ class ExportPackages(Command): def run(self, opts): base, bypy = get_paths() exe = get_exe() - cmd = [exe, bypy, 'export'] + list(opts.cli_args) + ['download.calibre-ebook.com:/srv/download/ci/calibre'] + cmd = [exe, bypy, 'export'] + list(opts.cli_args) + ['download.calibre-ebook.com:/srv/download/ci/calibre3'] ret = subprocess.Popen(cmd).wait() if ret != 0: raise SystemExit(ret) diff --git a/setup/win-ci.py b/setup/win-ci.py index 343f132384..076bac12bc 100644 --- a/setup/win-ci.py +++ b/setup/win-ci.py @@ -34,7 +34,7 @@ def download_file(url): def sw(): sw = os.environ['SW'] os.chdir(sw) - url = 'https://download.calibre-ebook.com/ci/calibre/windows-64.tar.xz' + url = 'https://download.calibre-ebook.com/ci/calibre3/windows-64.tar.xz' tarball = download_file(url) with tarfile.open(fileobj=io.BytesIO(tarball)) as tf: tf.extractall()