From 91f029380bcedaed3b36c290ea98b5fbe66465fc Mon Sep 17 00:00:00 2001 From: dianaml0 <82468439+dianaml0@users.noreply.github.com> Date: Wed, 24 Nov 2021 13:17:54 -0800 Subject: [PATCH] Update python versions used for testing in main (#2679) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: New version of fairscale breaks with python3.6. Moving to higher versions of python. # Before submitting - [ ] Was this discussed/approved via a Github issue? (no need for typos, doc improvements) - [ ] Did you read the [contributor guideline](https://github.com/pytorch/fairseq/blob/main/CONTRIBUTING.md)? - [ ] Did you make sure to update the docs? - [ ] Did you write any new necessary tests? ## What does this PR do? Fixes # (issue). ## PR review Anyone in the community is free to review the PR once the tests have passed. If we didn't discuss your PR in Github issues there's a high chance it will not be merged. ## Did you have fun? Make sure you had fun coding � Pull Request resolved: https://github.com/fairinternal/fairseq-py/pull/2679 Reviewed By: alexeib Differential Revision: D32653241 Pulled By: dianaml0 fbshipit-source-id: bb81023b967f7d585fe9fb808f65cfd60cf51490 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 981b59416f..bd1d3b3c6d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: max-parallel: 4 matrix: platform: [ubuntu-latest, macos-latest] - python-version: [3.6, 3.7] + python-version: [3.8, 3.9] runs-on: ${{ matrix.platform }}