Skip to content

Commit a1937c3

Browse files
authored
Ensure that generated python code are considered as module (feast-dev#679)
Co-authored-by: Khor Shu Heng <khor.heng@gojek.com>
1 parent f4fbbc0 commit a1937c3

9 files changed

Lines changed: 6 additions & 6 deletions

File tree

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ dmypy.json
179179
.flattened-pom.xml
180180

181181
sdk/python/docs/html
182-
sdk/python/feast/core/
183-
sdk/python/feast/serving/
184-
sdk/python/feast/storage/
185-
sdk/python/feast/types/
186-
sdk/python/tensorflow_metadata
182+
183+
# Generated python code
184+
*_pb2.py
185+
*_pb2.pyi
186+
*_pb2_grpc.py

.prow/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ postsubmits:
236236
- sh
237237
- -c
238238
- |
239-
infra/scripts/publish-python-sdk.sh \
239+
make compile-protos-python && infra/scripts/publish-python-sdk.sh \
240240
--directory-path sdk/python --repository pypi
241241
volumeMounts:
242242
- name: pypirc

sdk/python/feast/core/__init__.py

Whitespace-only changes.

sdk/python/feast/serving/__init__.py

Whitespace-only changes.

sdk/python/feast/storage/__init__.py

Whitespace-only changes.

sdk/python/feast/types/__init__.py

Whitespace-only changes.

sdk/python/tensorflow_metadata/__init__.py

Whitespace-only changes.

sdk/python/tensorflow_metadata/proto/__init__.py

Whitespace-only changes.

sdk/python/tensorflow_metadata/proto/v0/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)