From 982eaaec61f56a480727904a95080678243110f1 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Wed, 12 Aug 2020 22:02:53 +0100 Subject: [PATCH] fixed bug in setup --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 1e9bf83a6..86f771305 100644 --- a/setup.py +++ b/setup.py @@ -179,12 +179,12 @@ setup( name="binarycpython", version="0.2", description=""" - This is a python API for binary_c (version {})by David Hendriks, Rob Izzard and collaborators. + This is a python API for binary_c (versions {}) by David Hendriks, Rob Izzard and collaborators. Based on the initial set up by Jeff andrews. - It is tested and designed to work for version {}, we can't guarantee proper functioning for other versions + It is tested and designed to work for versions {}, we can't guarantee proper functioning for other versions If you want to use a different version of binary_c, download and install a different version of this package - """.format(REQUIRED_BINARY_C_VERSION, REQUIRED_BINARY_C_VERSION), + """.format(str(REQUIRED_BINARY_C_VERSIONS), str(REQUIRED_BINARY_C_VERSIONS)), author="David Hendriks, Robert Izzard and Jeff Andrews", author_email="davidhendriks93@gmail.com/d.hendriks@surrey.ac.uk,\ -- GitLab