From 32ce115a27908c62611388106a040ca7d7064ee6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Fri, 26 May 2023 18:26:28 +0200 Subject: [PATCH] feat: label nightly version This is to address https://github.com/overhangio/tutor-mfe/issues/122 As a consequence of this change, images will be tagged with a "-nightly" suffix. Next, we'll probably have to build them periodically in CI. --- tutorandroid/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorandroid/__about__.py b/tutorandroid/__about__.py index 9d7ed14..fb99bb0 100644 --- a/tutorandroid/__about__.py +++ b/tutorandroid/__about__.py @@ -1,7 +1,7 @@ __version__ = "15.0.0" # Handle version suffix for nightly, just like tutor core. -__version_suffix__ = "" +__version_suffix__ = "nightly" if __version_suffix__: __version__ += "-" + __version_suffix__