From 4e98304eb93dbbd62fc81b9e9edec50015b922cf Mon Sep 17 00:00:00 2001 From: Nikita Shulga Date: Tue, 7 Sep 2021 18:46:58 -0700 Subject: [PATCH] Fix quicklint (#64612) Summary: Fixes land-race introduced by https://github.com/pytorch/pytorch/commit/a22c936b6398f5cfd959b3e09622db4d90d61050 Pull Request resolved: https://github.com/pytorch/pytorch/pull/64612 Reviewed By: ngimel Differential Revision: D30798648 Pulled By: malfet fbshipit-source-id: ca546f68141d44493deba7bbf840e5f9662e8558 --- .../workflows/generated-parallelnative-linux-xenial-py3.6-gcc5.4.yml | 4 ++-- .github/workflows/generated-paralleltbb-linux-xenial-py3.6-gcc5.4.yml | 4 ++-- .github/workflows/generated-puretorch-linux-xenial-py3.6-gcc5.4.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/generated-parallelnative-linux-xenial-py3.6-gcc5.4.yml b/.github/workflows/generated-parallelnative-linux-xenial-py3.6-gcc5.4.yml index 1b352f6..8abf8d6 100644 --- a/.github/workflows/generated-parallelnative-linux-xenial-py3.6-gcc5.4.yml +++ b/.github/workflows/generated-parallelnative-linux-xenial-py3.6-gcc5.4.yml @@ -229,7 +229,7 @@ jobs: run: | COMMIT_TIME=$(git log --max-count=1 --format=%ct || echo 0) export COMMIT_TIME - pip3 install requests + pip3 install requests==2.26 python3 -m tools.stats.upload_binary_size_to_scuba || exit 0 - name: Chown workspace run: | @@ -302,7 +302,7 @@ jobs: image: python:3.9 steps: - name: Install dependencies - run: pip install typing-extensions + run: pip install typing-extensions==3.10 - name: Clone pytorch/pytorch uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9 - name: Generating test matrix diff --git a/.github/workflows/generated-paralleltbb-linux-xenial-py3.6-gcc5.4.yml b/.github/workflows/generated-paralleltbb-linux-xenial-py3.6-gcc5.4.yml index 35b8f86..25b77a4 100644 --- a/.github/workflows/generated-paralleltbb-linux-xenial-py3.6-gcc5.4.yml +++ b/.github/workflows/generated-paralleltbb-linux-xenial-py3.6-gcc5.4.yml @@ -229,7 +229,7 @@ jobs: run: | COMMIT_TIME=$(git log --max-count=1 --format=%ct || echo 0) export COMMIT_TIME - pip3 install requests + pip3 install requests==2.26 python3 -m tools.stats.upload_binary_size_to_scuba || exit 0 - name: Chown workspace run: | @@ -302,7 +302,7 @@ jobs: image: python:3.9 steps: - name: Install dependencies - run: pip install typing-extensions + run: pip install typing-extensions==3.10 - name: Clone pytorch/pytorch uses: zhouzhuojie/checkout@05b13c9a0d21f08f6d5e64a1d5042246d13619d9 - name: Generating test matrix diff --git a/.github/workflows/generated-puretorch-linux-xenial-py3.6-gcc5.4.yml b/.github/workflows/generated-puretorch-linux-xenial-py3.6-gcc5.4.yml index af12289..cac4b0a 100644 --- a/.github/workflows/generated-puretorch-linux-xenial-py3.6-gcc5.4.yml +++ b/.github/workflows/generated-puretorch-linux-xenial-py3.6-gcc5.4.yml @@ -229,7 +229,7 @@ jobs: run: | COMMIT_TIME=$(git log --max-count=1 --format=%ct || echo 0) export COMMIT_TIME - pip3 install requests + pip3 install requests==2.26 python3 -m tools.stats.upload_binary_size_to_scuba || exit 0 - name: Chown workspace run: | -- 2.7.4