Skip to content

Commit

Permalink
Bump develop version
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed May 19, 2023
1 parent 9dcceea commit 861fda4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coconut/command/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ def start_jupyter(self, args):

# pass the kernel to the console or otherwise just launch Jupyter now that we know our kernel is available
if args[0] in jupyter_console_commands:
if "--kernel" in args:
if any(a.startswith("--kernel") for a in args):
logger.warn("unable to specify Coconut kernel in 'jupyter " + args[0] + "' command as --kernel was already specified in the given arguments")
else:
args += ["--kernel", kernel]
Expand Down
2 changes: 1 addition & 1 deletion coconut/root.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
VERSION = "3.0.0"
VERSION_NAME = None
# False for release, int >= 1 for develop
DEVELOP = 4
DEVELOP = 5
ALPHA = False # for pre releases rather than post releases

assert DEVELOP is False or DEVELOP >= 1, "DEVELOP must be False or an int >= 1"
Expand Down

0 comments on commit 861fda4

Please sign in to comment.