Skip to content

Commit 3c07161

Browse files
author
Chris Elion
authored
pin pip to 20.2 for now (#4694)
* pin pip to 20.2 for now * add self to list of trigger files
1 parent b5151fa commit 3c07161

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pytest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- 'gym-unity/**'
99
- 'test_constraints*.txt'
1010
- 'test_requirements.txt'
11+
- '.github/workflows/pytest.yml'
1112
push:
1213
branches: [master]
1314

@@ -44,7 +45,8 @@ jobs:
4445
run: python -c "import sys; print(sys.version)"
4546
- name: Install dependencies
4647
run: |
47-
python -m pip install --upgrade pip
48+
# pin pip to workaround https://github.com/pypa/pip/issues/9180
49+
python -m pip install pip==20.2
4850
python -m pip install --upgrade setuptools
4951
python -m pip install --progress-bar=off -e ./ml-agents-envs -c ${{ matrix.pip_constraints }}
5052
python -m pip install --progress-bar=off -e ./ml-agents -c ${{ matrix.pip_constraints }}

0 commit comments

Comments
 (0)