# HG changeset patch # User Marcin Kuzminski # Date 2020-06-09 22:08:56 # Node ID 328a152e04363092b7d4f09b689dde4447cdf707 # Parent 9d65e3587bfbd1810d5a56cdd03c26ca1a835bb6 py3: fix python version read. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ test_requirements = _get_requirements( def get_version(): version = pkgutil.get_data('vcsserver', 'VERSION') - return version.strip() + return str(version.strip()) # additional files that goes into package itself