From 851327b1b38fa70dac622c4dcf816f75784d48ea Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Tue, 22 Mar 2022 09:11:59 +0100 Subject: [PATCH] fix torchdata CI installation --- .circleci/config.yml | 10 ++++++++-- .circleci/config.yml.in | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c68f39642ca..e3211e5da29 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -155,8 +155,14 @@ commands: install_prototype_dependencies: steps: - pip_install: - args: iopath git+https://github.com/pytorch/data - descr: Install prototype dependencies + args: iopath + descr: Install third-party dependencies + - pip_install: + args: -r https://raw.githubusercontent.com/pytorch/data/main/requirements.txt + descr: Install torchdata build dependencies + - pip_install: + args: --no-build-isolation git+https://github.com/pytorch/data + descr: Install torchdata from source # Most of the test suite is handled by the `unittest` jobs, with completely different workflow and setup. # This command can be used if only a selection of tests need to be run, for ad-hoc files. diff --git a/.circleci/config.yml.in b/.circleci/config.yml.in index 731d0133528..0d99a942338 100644 --- a/.circleci/config.yml.in +++ b/.circleci/config.yml.in @@ -155,8 +155,14 @@ commands: install_prototype_dependencies: steps: - pip_install: - args: iopath git+https://github.com/pytorch/data - descr: Install prototype dependencies + args: iopath + descr: Install third-party dependencies + - pip_install: + args: -r https://raw.githubusercontent.com/pytorch/data/main/requirements.txt + descr: Install torchdata build dependencies + - pip_install: + args: --no-build-isolation git+https://github.com/pytorch/data + descr: Install torchdata from source # Most of the test suite is handled by the `unittest` jobs, with completely different workflow and setup. # This command can be used if only a selection of tests need to be run, for ad-hoc files.