~barry/mailman/templatecache

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Barry Warsaw
  • Date: 2012-10-31 16:37:22 UTC
  • mfrom: (7178.1.1 work2)
  • Revision ID: barry@list.org-20121031163722-3lszhsiv9ai0akfp
 * Python 2.7 is not required.  Python 2.6 is no longer officially supported.
   The code base is now also `python2.7 -3` clean, although there are still
   some warnings in 3rd party dependencies.  LP: #1073506

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 < 0x20600f0:
28
 
    print 'Mailman requires at least Python 2.6'
 
27
if sys.hexversion < 0x20700f0:
 
28
    print 'Mailman requires at least Python 2.7'
29
29
    sys.exit(1)
30
30
 
31
31