Skip to content

Commit 099316a

Browse files
authored
Merge pull request #6 from Azure/main
Merge with Azure main
2 parents b7fceda + 03fcec0 commit 099316a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cluster/sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This is a fork of [feast-spark pacakge](https://github.com/feast-dev/feast-spark). This pacakge can be installed by executing this line (tested with Python 3.8 and Linux):
44

55
```bash
6-
pip install git+https://github.com/xiaoyongzhu/feast-spark.git#subdirectory=python
6+
pip install git+https://github.com/Azure/feast-azure.git#subdirectory=cluster/sdk/python
77
```
88

99
Contains

cluster/sdk/python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def initialize_options(self):
8585
import feast
8686

8787
self.protoc = ["python", "-m", "grpc_tools.protoc"] # find_executable("protoc")
88-
self.proto_folder = os.path.join(repo_root, "protos")
88+
self.proto_folder = os.path.join(repo_root, "cluster", "sdk", "protos")
8989
self.this_package = os.path.dirname(__file__) or os.getcwd()
9090
self.feast_protos = os.path.join(os.path.dirname(feast.__file__), 'protos')
9191
self.sub_folders = ["api"]
@@ -153,7 +153,7 @@ def run(self):
153153
"Programming Language :: Python :: 3.6",
154154
],
155155
entry_points={"console_scripts": ["feast-spark=feast_spark.cli:cli"]},
156-
use_scm_version={"root": "../", "relative_to": __file__, "tag_regex": TAG_REGEX},
156+
use_scm_version={"root": "../../../", "relative_to": __file__, "tag_regex": TAG_REGEX},
157157
setup_requires=["setuptools_scm", "grpcio-tools==1.31.0", "google-auth==1.21.1", "feast==0.9.5.2", "mypy-protobuf==2.5"],
158158
cmdclass={
159159
"build_proto": BuildProtoCommand,

0 commit comments

Comments
 (0)