From f1dc3a069770976aa1e9ca5033ddf2b07b5b2207 Mon Sep 17 00:00:00 2001 From: Jirka Borovec Date: Thu, 4 Mar 2021 17:48:17 +0100 Subject: [PATCH] hotfix for PT1.6 and torchtext (#6323) * ci: azure reinstall torchtext * move * todos * 0.6.0 * skip examples * formatter * skip * todo * Apply suggestions from code review (cherry picked from commit e038e747a0d09171f21f42ae31f5e7dcd390ea77) --- .github/workflows/ci_test-conda.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci_test-conda.yml b/.github/workflows/ci_test-conda.yml index 06645d68d6daf5..7c8aae53ab06e5 100644 --- a/.github/workflows/ci_test-conda.yml +++ b/.github/workflows/ci_test-conda.yml @@ -30,13 +30,6 @@ jobs: pip install --requirement requirements/devel.txt --upgrade-strategy only-if-needed pip list - - name: Cache datasets - # todo this probably does not work with docker images, rather cache dockers - uses: actions/cache@v2 - with: - path: Datasets - key: pl-dataset - - name: Pull checkpoints from S3 # todo: consider adding coma caching, but ATM all models have less then 100KB run: | @@ -46,6 +39,12 @@ jobs: unzip -o checkpoints.zip ls -l checkpoints/ + # todo: require proper fix in docker image + - name: Hotfix dependency + run: | + pip install torchtext==0.6.0 -U + shell: bash + - name: Tests run: | # NOTE: run coverage on tests does not propagare faler status for Win, https://github.com/nedbat/coveragepy/issues/1003