From 55c8ef588c5ba856a0181037d31138ac6ff4fb69 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 22 Apr 2023 09:36:07 +0800 Subject: [PATCH] fix default version string --- artiq/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/_version.py b/artiq/_version.py index 87dc270e3..e8239b387 100644 --- a/artiq/_version.py +++ b/artiq/_version.py @@ -1,4 +1,4 @@ import os def get_version(): - return os.getenv("VERSIONEER_OVERRIDE", default="7.0.beta") + return os.getenv("VERSIONEER_OVERRIDE", default="7.0")