Skip to content

Commit

Permalink
Merge pull request #46 from svenstaro/master
Browse files Browse the repository at this point in the history
Be explicit about python version
  • Loading branch information
mariusmuja committed May 18, 2012
2 parents 18082da + d8204b6 commit f320d4b
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions bin/download_checkmd5.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2

import urllib, hashlib, sys, os
from optparse import OptionParser
Expand Down Expand Up @@ -66,4 +66,4 @@ def main():
sys.exit(main())
except Exception as e:
print "ERROR, ",e
sys.exit(1)
sys.exit(1)
2 changes: 1 addition & 1 deletion bin/run_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2


import sys
Expand Down
2 changes: 1 addition & 1 deletion src/python/setup.py.tpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2

from distutils.core import setup
from os.path import exists, abspath, dirname, join
Expand Down
2 changes: 1 addition & 1 deletion test/memusage_clustering.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python2
import sys
from os.path import *
from pyflann import *
Expand Down
2 changes: 1 addition & 1 deletion test/memusage_nn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python2
import sys
from os.path import *
from pyflann import *
Expand Down
2 changes: 1 addition & 1 deletion test/test_clustering.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
import sys
from os.path import *
from pyflann import *
Expand Down
2 changes: 1 addition & 1 deletion test/test_index_save.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2

from pyflann import *
from copy import copy
Expand Down
2 changes: 1 addition & 1 deletion test/test_nn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
import sys
from os.path import *
import os
Expand Down
2 changes: 1 addition & 1 deletion test/test_nn_autotune.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
import sys
from os.path import *
import os
Expand Down
2 changes: 1 addition & 1 deletion test/test_nn_index.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2

from pyflann import *
from copy import copy
Expand Down

0 comments on commit f320d4b

Please sign in to comment.