-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(function): add support for script functions
Script functions allow running any arbitrary script as the command. Currently only Python scripts are supported.
1 parent
e32c4e7
commit efd81f3
Showing
3 changed files
with
75 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""All function related decorators and objects including inputs and outputs.""" | ||
from .inputs import Inputs # expose for easy import | ||
from .outputs import Outputs # expose for easy import | ||
from .base import Function, command | ||
from .base import Function, command, script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
queenbee-pollination==0.7.5 | ||
queenbee-local>=0.5.4 | ||
queenbee-local>=0.6.0 | ||
importlib-metadata>=6.6.0 |