Skip to content

Commit 4edf35c

Browse files
committed
use python3 instead of hardcoded python version in assembler
1 parent ea30ab1 commit 4edf35c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/s2i/assemblers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function should_collectstatic() {
106106
function virtualenv_bin() {
107107
# New versions of Python (>3.6) should use venv module
108108
# from stdlib instead of virtualenv package
109-
python3.9 -m venv $1
109+
python3 -m venv $1
110110
}
111111
112112
# Install pipenv or micropipenv to the separate virtualenv to isolate it

0 commit comments

Comments
 (0)