Use consistent order in metioning images

This commit is contained in:
Ayaz Salikhov
2025-02-18 17:30:19 +00:00
parent c467a15144
commit 8dddb5207c
2 changed files with 7 additions and 7 deletions

View File

@@ -14,9 +14,9 @@ ALL_IMAGES:= \
docker-stacks-foundation \
base-notebook \
minimal-notebook \
scipy-notebook \
r-notebook \
julia-notebook \
scipy-notebook \
tensorflow-notebook \
pytorch-notebook \
datascience-notebook \

View File

@@ -95,6 +95,12 @@ class RVersionTagger(TaggerInterface):
return "r-" + _get_program_version(container, "R").split()[2]
class JuliaVersionTagger(TaggerInterface):
@staticmethod
def tag_value(container: Container) -> str:
return "julia-" + _get_program_version(container, "julia").split()[2]
class TensorflowVersionTagger(TaggerInterface):
@staticmethod
def tag_value(container: Container) -> str:
@@ -110,12 +116,6 @@ class PytorchVersionTagger(TaggerInterface):
return "pytorch-" + _get_pip_package_version(container, "torch").split("+")[0]
class JuliaVersionTagger(TaggerInterface):
@staticmethod
def tag_value(container: Container) -> str:
return "julia-" + _get_program_version(container, "julia").split()[2]
class SparkVersionTagger(TaggerInterface):
@staticmethod
def tag_value(container: Container) -> str: