Skip to content

Commit 36f1abe

Browse files
InterLinked1Friendly Automation
authored and
Friendly Automation
committed
setupVenv: Use python3 instead of python.
Explicitly use python3 since it is required, and to avoid Python 2 deprecation warnings. ASTERISK-30255 #close Change-Id: I29dcdb2e37a8084e8ccd5aa9749ea66c716e8a91
1 parent f8b1266 commit 36f1abe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setupVenv.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
set -e
33

44
function do_pip_setup {
5-
python -m pip install --upgrade pip
6-
python -m pip install wheel setuptools build
7-
python -m pip install -r ./requirements.txt
8-
python -m pip install -r ./extras.txt
5+
python3 -m pip install --upgrade pip
6+
python3 -m pip install wheel setuptools build
7+
python3 -m pip install -r ./requirements.txt
8+
python3 -m pip install -r ./extras.txt
99
md5sum requirements.txt extras.txt > $1/checksums
1010
}
1111

0 commit comments

Comments
 (0)