~raj-abhilash1/mailman/bugfix

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Barry Warsaw
  • Date: 2014-12-22 21:19:01 UTC
  • mto: This revision was merged to the branch mainline in revision 7285.
  • Revision ID: barry@list.org-20141222211901-avvuoqd8n29wn3b9
Update the setup.py, tox.ini, template.py and documentation for the switch to
Python 3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from setuptools import setup, find_packages
25
25
from string import Template
26
26
 
27
 
if sys.hexversion < 0x20700f0:
28
 
    print('Mailman requires at least Python 2.7')
 
27
if sys.hexversion < 0x30400f0:
 
28
    print('Mailman requires at least Python 3.4')
29
29
    sys.exit(1)
30
30
 
31
31