From ee3e4fea140b061bfb3cc0f863b9660913c8e9e6 Mon Sep 17 00:00:00 2001 From: Evan Hubinger Date: Sat, 29 Jul 2023 00:44:11 -0700 Subject: [PATCH] Reenable develop --- coconut/root.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coconut/root.py b/coconut/root.py index 32cd33428..ff0868cab 100644 --- a/coconut/root.py +++ b/coconut/root.py @@ -26,7 +26,7 @@ VERSION = "3.0.3" VERSION_NAME = None # False for release, int >= 1 for develop -DEVELOP = False +DEVELOP = 1 ALPHA = False # for pre releases rather than post releases assert DEVELOP is False or DEVELOP >= 1, "DEVELOP must be False or an int >= 1"