From c57baa1f113aa3449fbf1b567d2f682bcb5f47eb Mon Sep 17 00:00:00 2001 From: David Wilson Date: Tue, 2 Feb 2021 15:08:46 +0000 Subject: [PATCH] ticket #783: Update conf.py to change with tuple format change in 9b1617f26 --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 54e3a5c7..eac3b90f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,7 +4,7 @@ import sys sys.path.append('..') sys.path.append('.') import mitogen -VERSION = '%s.%s.%s' % mitogen.__version__ +VERSION = '%s.%s.%s' % mitogen.__version__[:3] author = u'Network Genomics' copyright = u'2021, the Mitogen authors'