Skip to content

Commit b7eafcd

Browse files
authored
Fix failure installation of an upstream package in CI (ev-flow#647)
1 parent c0ad931 commit b7eafcd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
python -m pip install pytest rzpipe meson==0.62.0 ninja coverage ciphey frida objection r2pipe==1.8.0
29+
python -m pip install pytest rzpipe meson==0.62.0 ninja coverage ciphey frida "frida-tools<=12.3.0" objection r2pipe==1.8.0
3030

3131
# Install graphviz & ninja
3232
sudo apt-get -y install graphviz ninja-build

.github/workflows/smoke_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install dependencies
3939
run: |
4040
python -m pip install --upgrade pip
41-
python -m pip install ciphey frida objection
41+
python -m pip install ciphey frida "frida-tools<=12.3.0" objection
4242
python -m pip install black pytest sphinx sphinx-rtd-theme
4343

4444
# Install click >= 8.0.0 for CLI supports

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ requests = "<=2.31.0"
2121
plotly = "<=5.4.0"
2222
prompt-toolkit = "<=3.0.36"
2323
rzpipe = "<=0.1.2"
24+
frida-tools = "<=12.3.0"
2425
objection = "<=1.11.0"
2526
frida = "<=15.2.2"
2627
r2pipe = "==1.8.0"

0 commit comments

Comments
 (0)