Skip to content

Commit

Permalink
chore: handle nightly version numbers
Browse files Browse the repository at this point in the history
Here, we make it possible to add a "-nightly" suffix to the package
version. This suffix will find its way to the Docker image tags. Thus,
the nightly branch will have different image tags. This will resolve
some confusion, as image tags are currently identical in nightly and
master.
  • Loading branch information
regisb committed May 26, 2023
1 parent 6769141 commit f38f473
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tutornotes/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
__version__ = "15.0.4"

# Handle version suffix for nightly, just like tutor core.
__version_suffix__ = ""

if __version_suffix__:
__version__ += "-" + __version_suffix__

0 comments on commit f38f473

Please sign in to comment.