Skip to content

Commit

Permalink
fix: build-indicators.sh looks for setup.py and pyproject.toml (#2048)
Browse files Browse the repository at this point in the history
* fix: build-indicators.sh looks for setup.py again

Reverting a premature change.

* fix: readability and future-proof

* fix: more readability
  • Loading branch information
dshemetov authored Sep 11, 2024
1 parent 86399ad commit 6f841bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jenkins/build-indicator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ source env/bin/activate
pip install pip==23.0.1 --retries 10 --timeout 20
pip install numpy --retries 10 --timeout 20
pip install ../_delphi_utils_python/. --retries 10 --timeout 20
[ ! -f pyproject.toml ] || pip install . --retries 10 --timeout 20
if [ -f setup.py ] || [ -f pyproject.toml ]; then
pip install . --retries 10 --timeout 20
fi

0 comments on commit 6f841bb

Please sign in to comment.