From 6d89bb3ac19248e114684df17bbf3885dc26de3e Mon Sep 17 00:00:00 2001 From: Robert Rollins Date: Wed, 4 Nov 2020 11:01:41 -0800 Subject: [PATCH] Removed the six import from setup.py The six library isn't available during the installation process, so this line was preventing FormAlchemy distributions made from the master branch from being installable via pip. The import wasn't being used, either, so I'm really not sure why it was there in the first place. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 40f424b..3abbf7d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,6 @@ from os.path import join import sys import os -from six import text_type def get_version(fname='formalchemy/__init__.py'): with open(fname) as f: