Skip to content

Commit 8dddb52

Browse files
committed
Use consistent order in metioning images
1 parent c467a15 commit 8dddb52

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ ALL_IMAGES:= \
1414
docker-stacks-foundation \
1515
base-notebook \
1616
minimal-notebook \
17+
scipy-notebook \
1718
r-notebook \
1819
julia-notebook \
19-
scipy-notebook \
2020
tensorflow-notebook \
2121
pytorch-notebook \
2222
datascience-notebook \

tagging/taggers.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,12 @@ def tag_value(container: Container) -> str:
9595
return "r-" + _get_program_version(container, "R").split()[2]
9696

9797

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+
98104
class TensorflowVersionTagger(TaggerInterface):
99105
@staticmethod
100106
def tag_value(container: Container) -> str:
@@ -110,12 +116,6 @@ def tag_value(container: Container) -> str:
110116
return "pytorch-" + _get_pip_package_version(container, "torch").split("+")[0]
111117

112118

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-
119119
class SparkVersionTagger(TaggerInterface):
120120
@staticmethod
121121
def tag_value(container: Container) -> str:

0 commit comments

Comments
 (0)