From d87a2ac8242fef0c1e263ac4117a0998cd1f12cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 20 Nov 2023 16:07:54 +0100 Subject: [PATCH] feat: auto-switch to nightly Automatically switch to nightly based on the version from Tutor core. This means we will no longer have conflicts when we merge major releases branches to the nightly branch. --- tutorwebui/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorwebui/__about__.py b/tutorwebui/__about__.py index 6d477ab..b03b550 100644 --- a/tutorwebui/__about__.py +++ b/tutorwebui/__about__.py @@ -2,7 +2,7 @@ __package_version__ = __version__ # Handle version suffix for nightly, just like tutor core. -__version_suffix__ = "" +from tutor.__about__ import __version_suffix__ if __version_suffix__: __version__ += "-" + __version_suffix__