Commit 09a088c1 authored by Andreas Tille's avatar Andreas Tille
Browse files

We really want Python3

parent e121d92c
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -5,6 +5,12 @@ Description: Automatic port to Python3 via

--- a/test/scripts/generate_read.py
+++ b/test/scripts/generate_read.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 # -*- coding: utf-8 -*-
 '''
 Program to generate reads from a fasta file (for tests). P. Marijon based one
@@ -11,24 +11,24 @@ import random
 
 def usage():
@@ -77,6 +83,12 @@ Description: Automatic port to Python3 via
             
--- a/test/scripts/make_deletions.py
+++ b/test/scripts/make_deletions.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 # -*- coding: utf-8 -*-
 '''Program to generate random deletions in a given genome. C. Lemaitre'''
 
@@ -10,29 +10,29 @@ import random
 
 def usage():
@@ -152,6 +164,12 @@ Description: Automatic port to Python3 via
 
--- a/test/scripts/make_snp_deletions.py
+++ b/test/scripts/make_snp_deletions.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 # -*- coding: utf-8 -*-
 
@@ -204,7 +204,7 @@ def main():
     seq_del_cpt = 0
     del_cpt = 0