summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBarry Warsaw2015-01-04 20:20:33 -0500
committerBarry Warsaw2015-01-04 20:20:33 -0500
commit4a612db8e89afed74173b93f3b64fa567b8417a3 (patch)
tree81a687d113079a25f93279f35c7eee2aa2572510 /setup.py
parent84af79988a4e916604cba31843778206efb7d1b8 (diff)
parentde181c1a40965a3a7deedd56a034a946f45b6984 (diff)
downloadmailman-4a612db8e89afed74173b93f3b64fa567b8417a3.tar.gz
mailman-4a612db8e89afed74173b93f3b64fa567b8417a3.tar.zst
mailman-4a612db8e89afed74173b93f3b64fa567b8417a3.zip
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 78787ed06..87c7ee144 100644
--- a/setup.py
+++ b/setup.py
@@ -15,17 +15,15 @@
# You should have received a copy of the GNU General Public License along with
# GNU Mailman. If not, see <http://www.gnu.org/licenses/>.
-# Do *not* import unicode_literals. This breaks setuptools.
-from __future__ import absolute_import, print_function
-
import re
import sys
from setuptools import setup, find_packages
from string import Template
-if sys.hexversion < 0x20700f0:
- print('Mailman requires at least Python 2.7')
+
+if sys.hexversion < 0x30400f0:
+ print('Mailman requires at least Python 3.4')
sys.exit(1)
@@ -105,6 +103,7 @@ case second `m'. Any other spelling is incorrect.""",
'mock',
'nose2',
'passlib',
+ 'six',
'sqlalchemy',
'zope.component',
'zope.configuration',