Skip to content

Commit

Permalink
Fix dependencies building for maturin wheel publication.
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinHirschi committed Oct 8, 2024
1 parent 67559d2 commit e596d88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,16 @@ exclude = [
"gammaloop/dependencies/dependency_build.log",
"gammaloop/dependencies/venv",
"gammaloop/dependencies/venv/**",
"gammaloop/dependencies/symbolica/symbolica_path.txt",
"gammaloop/dependencies/test_quad_math/test_quad_math"
"gammaloop/dependencies/symbolica/symbolica_path.txt",
]
include = [
"gammaloop/.pytest_cache/v/test_runtimes",
"gammaloop/tests/test_data/graph_inputs",
"gammaloop/tests/test_data/graph_inputs/*",
"gammaloop/examples/cards",
"gammaloop/examples/cards/*",
"gammaloop/dependencies/test_quad_math",
"gammaloop/dependencies/test_quad_math/test_quad_math.c"
]

[project.scripts]
Expand Down
2 changes: 1 addition & 1 deletion python/gammaloop/bin/build_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ build_dependencies () {
fi

if ! test -d symbolica; then
CMD_TO_ACCESS_SYMBOLICA="${CMD_TO_ACCESS_SYMBOLICA:-git clone https://github.com/alphal00p/symbolica}"
CMD_TO_ACCESS_SYMBOLICA="${CMD_TO_ACCESS_SYMBOLICA:-git clone -b main https://github.com/benruijl/symbolica}"
echo "Cloning symbolica with '"$CMD_TO_ACCESS_SYMBOLICA"' ...";
$CMD_TO_ACCESS_SYMBOLICA >> dependency_build.log 2>&1
RETCODE=$RETCODE+$?
Expand Down

0 comments on commit e596d88

Please sign in to comment.