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.
9 lines
183 B
Python
9 lines
183 B
Python
__version__ = "15.0.0"
|
|
|
|
# Handle version suffix for nightly, just like tutor core.
|
|
__version_suffix__ = "nightly"
|
|
|
|
if __version_suffix__:
|
|
__version__ += "-" + __version_suffix__
|
|
|