Skip to content

Commit

Permalink
Upgrade pip to 20.2.4 (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljanes authored Nov 9, 2020
1 parent 1e82838 commit 6bdc1a5
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python-version: 3.7.9
- name: Install build tools
run: |
python -m pip install -U pip==20.2.3
python -m pip install -U pip==20.2.4
python -m pip install -U setuptools==47.3.1
python -m pip install -U poetry==1.1.4
poetry config virtualenvs.create false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/flower.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
python-version: ${{ matrix.python }}
- name: Install build tools
run: |
python -m pip install -U pip==20.2.3
python -m pip install -U pip==20.2.4
python -m pip install -U setuptools==49.3.1
python -m pip install -U poetry==1.1.4
poetry config virtualenvs.create false
Expand All @@ -43,7 +43,7 @@ jobs:
python-version: 3.7.9
- name: Install build tools
run: |
python -m pip install -U pip==20.2.3
python -m pip install -U pip==20.2.4
python -m pip install -U setuptools==49.3.1
python -m pip install -U poetry==1.0.10
poetry config virtualenvs.create false
Expand All @@ -64,7 +64,7 @@ jobs:
python-version: 3.7.9
- name: Install build tools
run: |
python -m pip install -U pip==20.2.3
python -m pip install -U pip==20.2.4
python -m pip install -U setuptools==49.3.1
python -m pip install -U poetry==1.1.4
poetry config virtualenvs.create false
Expand All @@ -84,7 +84,7 @@ jobs:
python-version: 3.7.9
- name: Install build tools
run: |
python -m pip install -U pip==20.2.3
python -m pip install -U pip==20.2.4
python -m pip install -U setuptools==49.3.1
python -m pip install -U poetry==1.1.4
poetry config virtualenvs.create false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flower_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
python-version: 3.7.9
- name: Install build tools
run: |
python -m pip install -U pip==20.2.3
python -m pip install -U pip==20.2.4
python -m pip install -U setuptools==49.3.1
python -m pip install -U poetry==1.1.4
- name: Release nightly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flower_ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python-version: 3.7.9
- name: Install build tools
run: |
python -m pip install -U pip==20.2.3
python -m pip install -U pip==20.2.4
python -m pip install -U setuptools==49.3.1
python -m pip install -U poetry==1.1.4
poetry config virtualenvs.create false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flower_tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python-version: 3.7.9
- name: Install build tools
run: |
python -m pip install -U pip==20.2.3
python -m pip install -U pip==20.2.4
python -m pip install -U setuptools==49.3.1
python -m pip install -U poetry==1.1.4
poetry config virtualenvs.create false
Expand Down
2 changes: 1 addition & 1 deletion dev/aws-ami-bootstrap-tf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev li
sudo apt install -y python3.7 python3-pip

# Install project dependencies
python3.7 -m pip install -U pip==20.2.3 setuptools==49.3.1
python3.7 -m pip install -U pip==20.2.4 setuptools==49.3.1
python3.7 -m pip install -U numpy==1.18.1 grpcio==1.27.2 google==2.0.3 protobuf==3.12.1 \
boto3==1.12.36 boto3_type_annotations==0.3.1 paramiko==2.7.1 docker==4.2.0 matplotlib==3.2.1 \
tensorflow-cpu==2.3.0
Expand Down
2 changes: 1 addition & 1 deletion dev/aws-ami-bootstrap-torch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev li
sudo apt install -y python3.7 python3-pip

# Install project dependencies
python3.7 -m pip install -U pip==20.2.3 setuptools==49.3.1
python3.7 -m pip install -U pip==20.2.4 setuptools==49.3.1
python3.7 -m pip install -U numpy==1.18.1 grpcio==1.27.2 google==2.0.3 protobuf==3.12.1 \
boto3==1.12.36 boto3_type_annotations==0.3.1 paramiko==2.7.1 docker==4.2.0 matplotlib==3.2.1 \
tqdm==4.48.2 torch==1.6.0 torchvision==0.7.0
Expand Down
2 changes: 1 addition & 1 deletion dev/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"/../
./dev/rm-caches.sh

# Upgrade/install spcific versions of `pip`, `setuptools`, and `poetry`
python -m pip install -U pip==20.2.3
python -m pip install -U pip==20.2.4
python -m pip install -U setuptools==49.3.1
python -m pip install -U poetry==1.1.4

Expand Down

0 comments on commit 6bdc1a5

Please sign in to comment.