Skip to content

Commit

Permalink
feat: simplify nightly version management
Browse files Browse the repository at this point in the history
By pulling the version suffix from tutor, we avoid git conflicts when
merging the release branch in nightly.
  • Loading branch information
regisb committed Nov 20, 2023
1 parent 309817d commit f49a642
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def load_about():

setup(
name="tutor-jupyter",
version=ABOUT["__package_version__"],
version=ABOUT["__version__"],
url="https://github.com/overhangio/tutor-jupyter",
project_urls={
"Code": "https://github.com/overhangio/tutor-jupyter",
Expand Down
6 changes: 0 additions & 6 deletions tutorjupyter/__about__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
__version__ = "16.0.1"
__package_version__ = __version__

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

if __version_suffix__:
__version__ += "-" + __version_suffix__
5 changes: 5 additions & 0 deletions tutorjupyter/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@

import pkg_resources
from tutor import hooks
from tutor.__about__ import __version_suffix__

from .__about__ import __version__

# Handle version suffix in nightly mode, just like tutor core
if __version_suffix__:
__version__ += "-" + __version_suffix__

########################################
# CONFIGURATION
########################################
Expand Down

0 comments on commit f49a642

Please sign in to comment.