Skip to content

Commit

Permalink
Python3.4 barrier earlier in code
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanoborini committed Jan 19, 2015
1 parent cb4433e commit 342a543
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
@@ -1,14 +1,16 @@
#!/usr/bin/env python3.4
import os
import codecs
import re
from setuptools import setup, find_packages
import sys

if '3.4' not in sys.version.split()[0]:
print("Needs python 3.4")
sys.exit(0)

import os
import codecs
import re
from setuptools import setup, find_packages



base_dir = os.path.abspath(os.path.dirname(__file__))
def find_version(*file_paths):
Expand Down

0 comments on commit 342a543

Please sign in to comment.