Skip to content

Commit

Permalink
fix: Update build_go_protos to use a consistent python path (#2550)
Browse files Browse the repository at this point in the history
Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals authored and adchia committed Apr 20, 2022
1 parent abd6be7 commit 1c523bf
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 @@ -355,7 +356,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 1c523bf

Please sign in to comment.