We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5151fa commit 3c07161Copy full SHA for 3c07161
.github/workflows/pytest.yml
@@ -8,6 +8,7 @@ on:
8
- 'gym-unity/**'
9
- 'test_constraints*.txt'
10
- 'test_requirements.txt'
11
+ - '.github/workflows/pytest.yml'
12
push:
13
branches: [master]
14
@@ -44,7 +45,8 @@ jobs:
44
45
run: python -c "import sys; print(sys.version)"
46
- name: Install dependencies
47
run: |
- 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
50
python -m pip install --upgrade setuptools
51
python -m pip install --progress-bar=off -e ./ml-agents-envs -c ${{ matrix.pip_constraints }}
52
python -m pip install --progress-bar=off -e ./ml-agents -c ${{ matrix.pip_constraints }}
0 commit comments