Skip to content

Commit

Permalink
exp dependency3
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvak001 committed Feb 12, 2025
1 parent f29d245 commit 7f62c85
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,17 @@ jobs:
shell: bash
run: |
diff <(sort before.txt) <(sort after.txt) > diff.txt || true
grep -v -e 'flare_capa==' -e 'altgraph==' -e 'build==' -e 'pyinstaller==' -e 'pywin32-ctypes==' -e 'tomli==' diff.txt > unexpected.txt
grep -v -e 'flare_capa==' \
-e 'altgraph==' \
-e 'build==' \
-e 'pyinstaller==' \
-e 'pywin32-ctypes==' \
-e 'tomli==' \
-e 'packaging==' \
-e 'pyinstaller-hooks-contrib==' \
-e 'pyproject_hooks==' \
-e 'pefile==' \
-e '^[0-9]' diff.txt > unexpected.txt || true
if [ -s unexpected.txt ]; then
echo "Warning: Unexpected extra packages were installed:"
cat unexpected.txt
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ dependencies = [
"colorama>=0.4",
"ida-settings>=2",
"ruamel.yaml>=0.18",
"pefile>=2023.2.7",
"pyelftools>=0.31",
"pydantic>=2",
"rich>=13",
Expand Down

0 comments on commit 7f62c85

Please sign in to comment.