From 0e0662db5e06edf816b82519a3ad3d5ead7eeff9 Mon Sep 17 00:00:00 2001 From: "Howard M. Lewis Ship" Date: Thu, 20 Oct 2022 16:07:53 -0700 Subject: [PATCH] Fix the code to read the version number --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 2caae41..3673eaf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,7 +57,7 @@ # def read_project_version(): - f = open("VERSION.txt") + f = open("../VERSION.txt") version = f.readline().strip() f.close()