From 5cc5188fc76a46ed01966948269867c39ca4c74c Mon Sep 17 00:00:00 2001 From: SunDwarf Date: Sat, 21 Nov 2015 09:12:54 +0000 Subject: [PATCH] Fix setup.py whoops --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 241281a..0fbf446 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from flask_s3 import __version__ setup( name='Flask-S3', - version=".".join(__version__), + version=".".join(map(str, __version__)), url='http://github.com/e-dard/flask-s3', license='WTFPL', author='Edward Robinson',