We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 789ffc0 commit 41132c7Copy full SHA for 41132c7
2 files changed
.github/workflows/pytest.yml
@@ -23,6 +23,7 @@ jobs:
23
# Install AndroidWorld
24
- name: Install AndroidWorld
25
run: |
26
+ mv pyproject.toml pyproject.toml.bak || true
27
pip install -r requirements.txt
28
python setup.py install
29
@@ -52,3 +53,7 @@ jobs:
52
53
PYTHONPATH: ${{ env.PYTHONPATH }}
54
55
pytest -vv -n auto --ignore=android_env
56
+
57
+ - name: Rename pyproject.toml
58
+ run: |
59
+ mv pyproject.toml.bak pyproject.toml || true
requirements.txt
@@ -3,7 +3,8 @@ android_env==1.2.3
3
dm_env==1.6
4
fuzzywuzzy==0.18.0
5
google-generativeai
6
-grpcio-tools
+grpcio-tools==1.71.0
7
+protobuf==5.29.5
8
immutabledict==2.0.0
9
IPython
10
jsonschema==4.17.3
0 commit comments