~dmedia/filestore/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jason Gerard DeRose
  • Date: 2012-11-01 06:15:22 UTC
  • mto: This revision was merged to the branch mainline in revision 270.
  • Revision ID: jderose@novacut.com-20121101061522-p6ypooxofjq8wggt
Add test for python >= 3.2 in setup.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
Install `filestore`.
26
26
"""
27
27
 
28
 
import subprocess
 
28
import sys
 
29
if sys.version_info < (3, 2):
 
30
    sys.exit('filestore requires Python 3.2 or newer')
 
31
 
29
32
from distutils.core import setup, Extension
30
33
from distutils.cmd import Command
31
34
from unittest import TestLoader, TextTestRunner