File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ ALL_IMAGES:= \
14
14
docker-stacks-foundation \
15
15
base-notebook \
16
16
minimal-notebook \
17
+ scipy-notebook \
17
18
r-notebook \
18
19
julia-notebook \
19
- scipy-notebook \
20
20
tensorflow-notebook \
21
21
pytorch-notebook \
22
22
datascience-notebook \
Original file line number Diff line number Diff line change @@ -95,6 +95,12 @@ def tag_value(container: Container) -> str:
95
95
return "r-" + _get_program_version (container , "R" ).split ()[2 ]
96
96
97
97
98
+ class JuliaVersionTagger (TaggerInterface ):
99
+ @staticmethod
100
+ def tag_value (container : Container ) -> str :
101
+ return "julia-" + _get_program_version (container , "julia" ).split ()[2 ]
102
+
103
+
98
104
class TensorflowVersionTagger (TaggerInterface ):
99
105
@staticmethod
100
106
def tag_value (container : Container ) -> str :
@@ -110,12 +116,6 @@ def tag_value(container: Container) -> str:
110
116
return "pytorch-" + _get_pip_package_version (container , "torch" ).split ("+" )[0 ]
111
117
112
118
113
- class JuliaVersionTagger (TaggerInterface ):
114
- @staticmethod
115
- def tag_value (container : Container ) -> str :
116
- return "julia-" + _get_program_version (container , "julia" ).split ()[2 ]
117
-
118
-
119
119
class SparkVersionTagger (TaggerInterface ):
120
120
@staticmethod
121
121
def tag_value (container : Container ) -> str :
You can’t perform that action at this time.
0 commit comments