Skip to content

Commit

Permalink
fix: Update build_go_protos to use a consistent python path
Browse files Browse the repository at this point in the history
Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals committed Apr 14, 2022
1 parent 44f5c11 commit ac67f6a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import re
import shutil
import subprocess
import sys
from distutils.cmd import Command
from pathlib import Path
from subprocess import CalledProcessError
Expand Down Expand Up @@ -356,7 +357,8 @@ def _compile_embedded_lib(self):
"-output",
"feast/embedded_go/lib",
"-vm",
"python3",
# Path of current python executable
sys.executable,
"-no-make",
"github.com/feast-dev/feast/go/embedded"
], env={
Expand Down

0 comments on commit ac67f6a

Please sign in to comment.