From 35772e6a311f1e8eefb54cfcc812740c986f0709 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 15 Oct 2023 21:52:16 +0530 Subject: [PATCH] new ci data dir --- setup/installers.py | 2 +- setup/unix-ci.py | 2 +- setup/win-ci.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup/installers.py b/setup/installers.py index fb74c58849..ef55612552 100644 --- a/setup/installers.py +++ b/setup/installers.py @@ -225,7 +225,7 @@ class ExportPackages(Command): base, bypy = get_paths() exe = get_exe() for which in ('linux', 'macos', 'windows'): - cmd = [exe, bypy, 'export'] + ['download.calibre-ebook.com:/srv/download/ci/calibre6'] + [which] + cmd = [exe, bypy, 'export'] + ['download.calibre-ebook.com:/srv/download/ci/calibre7'] + [which] ret = subprocess.Popen(cmd).wait() if ret != 0: raise SystemExit(ret) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index 4a16de89fb..46e8afd7cc 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -130,7 +130,7 @@ def main(): tball = 'macos-64' if ismacos else 'linux-64' download_and_decompress( - f'https://download.calibre-ebook.com/ci/calibre6/{tball}.tar.xz', SW + f'https://download.calibre-ebook.com/ci/calibre7/{tball}.tar.xz', SW ) if not ismacos: install_linux_deps() diff --git a/setup/win-ci.py b/setup/win-ci.py index b51a3f7199..c6dbf190ed 100644 --- a/setup/win-ci.py +++ b/setup/win-ci.py @@ -33,7 +33,7 @@ def download_file(url): def sw(): sw = os.environ['SW'] os.chdir(sw) - url = 'https://download.calibre-ebook.com/ci/calibre6/windows-64.tar.xz' + url = 'https://download.calibre-ebook.com/ci/calibre7/windows-64.tar.xz' tarball = download_file(url) with tarfile.open(fileobj=io.BytesIO(tarball)) as tf: tf.extractall()