From 745aed0ad4075681fd244129fd886d1da187342e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mochol=C3=AD?= Date: Wed, 14 Apr 2021 23:44:52 +0200 Subject: [PATCH] Remove lightning-dtrun installation (#7018) --- .github/workflows/ci_test-mnodes.yml | 3 --- azure-pipelines.yml | 1 - 2 files changed, 4 deletions(-) diff --git a/.github/workflows/ci_test-mnodes.yml b/.github/workflows/ci_test-mnodes.yml index a052583413..36353e53f0 100644 --- a/.github/workflows/ci_test-mnodes.yml +++ b/.github/workflows/ci_test-mnodes.yml @@ -78,9 +78,6 @@ jobs: - name: Install dependencies run: | pip install awscli coverage - # todo - pip install git+https://${{ secrets.PL_GHOST_TOKEN }}@github.com/PyTorchLightning/lightning-dtrun.git@v0.0.3 -q --no-cache-dir - #pip install git+https://${{ secrets.PL_GHOST_TOKEN }}@github.com/PyTorchLightning/lightning-dtrun.git@mnodes -q --no-cache-dir - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v1 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 85664bac74..cb878ff06e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -62,7 +62,6 @@ jobs: python -c "fname = 'requirements/extra.txt' ; lines = [line for line in open(fname).readlines() if 'fairscale' not in line] ; open(fname, 'w').writelines(lines)" python -c "fname = 'requirements/extra.txt' ; lines = [line for line in open(fname).readlines() if 'horovod' not in line] ; open(fname, 'w').writelines(lines)" pip install --requirement ./requirements/devel.txt --upgrade-strategy only-if-needed - pip install git+https://$(AUTH_TOKEN)@github.com/PyTorchLightning/lightning-dtrun.git@v0.0.2 --no-cache-dir pip list displayName: 'Install dependencies'