Skip to content
This repository has been archived by the owner on Jun 23, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Update module versions
  • Loading branch information
mands committed Apr 10, 2017
1 parent a4e794e commit 47486dc
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion iris/Iris.Classify/nstack.yaml
@@ -1,5 +1,5 @@
# Service name (a combination of lower case letters, numbers, and dashes)
name: Iris.Classify:0.0.1-SNAPSHOT
name: Iris.Classify:0.1.0

# The language stack to use
stack: Python
Expand Down
4 changes: 2 additions & 2 deletions iris/Iris.Workflow/workflow.nml
@@ -1,5 +1,5 @@
module Iris.Workflow:0.0.1-SNAPSHOT {
import Iris.Classify:0.0.1-SNAPSHOT as C;
module Iris.Workflow:0.1.0 {
import Iris.Classify:0.1.0 as C;

def fromHttp = Sources.http<(Double, Double, Double, Double)> { http_path = "/iris" }
| C.predict
Expand Down
2 changes: 1 addition & 1 deletion movies/Movies.FilterHighScores/nstack.yaml
@@ -1,5 +1,5 @@
# Service name (a combination of lower case letters, numbers, and dashes)
name: Movies.FilterHighScores:0.1.0-SNAPSHOT
name: Movies.FilterHighScores:0.1.0

# The language stack to use
stack: python
Expand Down
2 changes: 1 addition & 1 deletion movies/Movies.GetIMDBScore/nstack.yaml
@@ -1,5 +1,5 @@
# Service name (a combination of lower case letters, numbers, and dashes)
name: Movies.GetIMDBScore:0.1.0-SNAPSHOT
name: Movies.GetIMDBScore:0.1.0

# The language stack to use
stack: python
Expand Down
2 changes: 1 addition & 1 deletion movies/Movies.GetMoviePoster/nstack.yaml
@@ -1,5 +1,5 @@
# Service name (a combination of lower case letters, numbers, and dashes)
name: Movies.GetMoviePoster:0.1.0-SNAPSHOT
name: Movies.GetMoviePoster:0.1.0

# The language stack to use
stack: python
Expand Down
12 changes: 6 additions & 6 deletions movies/Movies.Workflows/workflow.nml
@@ -1,9 +1,9 @@
module Movies.Workflows:0.1.0-SNAPSHOT {
import Movies.GetIMDBScore:0.1.0-SNAPSHOT as GetIMDBScore;
import Movies.FilterHighScores:0.1.0-SNAPSHOT as FilterHighScores;
import Movies.GetMoviePoster:0.1.0-SNAPSHOT as GetMoviePoster;
import NStack.ImageProcess:0.1.0-SNAPSHOT as Image;
import NStack.Utils:0.1.0-SNAPSHOT as Utils;
module Movies.Workflows:0.1.0 {
import Movies.GetIMDBScore:0.1.0 as GetIMDBScore;
import Movies.FilterHighScores:0.1.0 as FilterHighScores;
import Movies.GetMoviePoster:0.1.0 as GetMoviePoster;
import NStack.ImageProcess:0.1.0 as Image;
import NStack.Utils:0.1.0 as Utils;

// Movie workflow - get and filter top movies (according to IMDB) and apply an image filter to the movie poster
def moviePosters = GetIMDBScore.getIMDBScore
Expand Down
2 changes: 1 addition & 1 deletion nstack/NStack.ImageProcess/nstack.yaml
@@ -1,5 +1,5 @@
# Service name (a combination of lower case letters, numbers, and dashes)
name: NStack.ImageProcess:0.1.0-SNAPSHOT
name: NStack.ImageProcess:0.1.0

# The language stack to use
stack: python
Expand Down

0 comments on commit 47486dc

Please sign in to comment.