From e690bbda34c10689d3cb411289aa174f9a4653ff Mon Sep 17 00:00:00 2001 From: Jirka B Date: Tue, 7 Jan 2025 23:11:13 +0900 Subject: [PATCH] ci: update `torch` URL --- .github/workflows/ci-integrate.yml | 2 +- .github/workflows/ci-tests.yml | 2 +- .github/workflows/docs-build.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-integrate.yml b/.github/workflows/ci-integrate.yml index bc8e47c72c6..8826cf49ac1 100644 --- a/.github/workflows/ci-integrate.yml +++ b/.github/workflows/ci-integrate.yml @@ -36,7 +36,7 @@ jobs: - { python-version: "3.10", requires: "latest", os: "ubuntu-22.04" } # - { python-version: "3.10", requires: "latest", os: "macOS-14" } # M1 machine # todo: crashing for MPS out of memory env: - PYTORCH_URL: "http://download.pytorch.org/whl/cpu/" + PYTORCH_URL: "https://download.pytorch.org/whl/cpu/" FREEZE_REQUIREMENTS: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }} PYPI_CACHE: "_ci-cache_PyPI" diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 65d0dd1e49f..0f6628277c0 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -64,7 +64,7 @@ jobs: FREEZE_REQUIREMENTS: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }} TOKENIZERS_PARALLELISM: false TEST_DIRS: ${{ needs.check-diff.outputs.test-dirs }} - PIP_EXTRA_INDEX_URL: "--extra-index-url=http://download.pytorch.org/whl/cpu/" + PIP_EXTRA_INDEX_URL: "--extra-index-url=https://download.pytorch.org/whl/cpu/" UNITTEST_TIMEOUT: "" # by default, it is not set # Timeout: https://stackoverflow.com/a/59076067/4521646 diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index db3bbadc2ce..a7c6130d93f 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -18,7 +18,7 @@ defaults: env: FREEZE_REQUIREMENTS: "1" - TORCH_URL: "http://download.pytorch.org/whl/cpu/" + TORCH_URL: "https://download.pytorch.org/whl/cpu/" PYPI_CACHE: "_ci-cache_PyPI" PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION: "python" TOKENIZERS_PARALLELISM: false