Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add python conf to the metadata #894

Merged
merged 45 commits into from
Mar 6, 2019
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
592ca36
add core types and type checking function
gaoning777 Mar 1, 2019
3a3fc17
fix unit test bug
gaoning777 Mar 1, 2019
db45632
avoid defining dynamic classes
gaoning777 Mar 1, 2019
dcc3baf
typo fix
gaoning777 Mar 1, 2019
89c0907
add component metadata format
gaoning777 Mar 1, 2019
e55515e
add a construct for the component decorator
gaoning777 Mar 1, 2019
eed41fa
add default values for the meta classes
gaoning777 Mar 1, 2019
d74d4d8
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 1, 2019
18d5459
add input/output types to the metadata
gaoning777 Mar 1, 2019
9218ffe
add from_dict in TypeMeta
gaoning777 Mar 1, 2019
d28d555
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 1, 2019
aac35b1
small fix
gaoning777 Mar 1, 2019
5ccc857
add unit tests
gaoning777 Mar 1, 2019
3081d47
use python struct for the openapi schema
gaoning777 Mar 1, 2019
dcf2ecc
Merge branch 'add-core-types-and-checking' into add-component-metadata
gaoning777 Mar 1, 2019
a2c89de
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 1, 2019
b0a7314
add default in parameter
gaoning777 Mar 1, 2019
c51ccf7
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 1, 2019
b69b807
add default value
gaoning777 Mar 1, 2019
57232e4
remove the str restriction for the param default
gaoning777 Mar 1, 2019
eb7462a
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 1, 2019
04b86f2
bug fix
gaoning777 Mar 1, 2019
622ad68
add pipelinemeta
gaoning777 Mar 1, 2019
8834507
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 1, 2019
ac49e68
add pipeline metadata
gaoning777 Mar 2, 2019
e05e5e9
ignore annotation if it is not str/BaseType/dict
gaoning777 Mar 2, 2019
10ceb09
update param name in the check_type functions
gaoning777 Mar 4, 2019
6084865
Merge branch 'add-core-types-and-checking' into add-component-metadata
gaoning777 Mar 4, 2019
987e22f
remove default values for non-primitive types in the function signature
gaoning777 Mar 4, 2019
a37084b
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 4, 2019
3d625b3
typo in the comments
gaoning777 Mar 5, 2019
dd2601f
Merge branch 'master' into add-component-metadata
gaoning777 Mar 5, 2019
03c09d9
Merge branch 'master' into add-component-metadata
gaoning777 Mar 5, 2019
9c233b3
move the metadata classes to a separate module
gaoning777 Mar 5, 2019
ad66a1a
Merge branch 'master' into add-python-meta
gaoning777 Mar 5, 2019
25f6b33
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 5, 2019
8ddfbb2
fix unit test
gaoning777 Mar 5, 2019
637b921
add __eq__ to meta classes
gaoning777 Mar 5, 2019
40224da
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 5, 2019
2392815
fix unit test
gaoning777 Mar 5, 2019
1621f0c
Merge branch 'add-component-metadata' into add-python-meta
gaoning777 Mar 5, 2019
8312845
fix bug: duplicate variable of args
gaoning777 Mar 5, 2019
7bf701a
move python_component and _component decorator in _component file
gaoning777 Mar 5, 2019
094cf77
Merge branch 'master' into add-python-meta
gaoning777 Mar 6, 2019
16c2f8f
remove the print
gaoning777 Mar 6, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into add-python-meta
  • Loading branch information
gaoning777 committed Mar 6, 2019
commit 094cf772abf1f9731775fce80825d4673936eb7d
2 changes: 1 addition & 1 deletion sdk/python/kfp/dsl/_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@ def _annotation_to_typemeta(annotation):
arg_type = TypeMeta.from_dict(annotation)
else:
return TypeMeta()
return arg_type
return arg_type
You are viewing a condensed version of this merge commit. You can view the full changes here.