Skip to content

Commit

Permalink
python3 compatibilities
Browse files Browse the repository at this point in the history
  • Loading branch information
emilleishida committed Jul 12, 2021
1 parent f50b17f commit 5deece3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cosmoabc/ABC_functions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Functions to optimize parallelization.
Expand All @@ -7,7 +7,7 @@
import time
import sys
import os

from inspect import isfunction

from scipy.stats import multivariate_normal
Expand Down
2 changes: 1 addition & 1 deletion cosmoabc/ABC_sampler.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Approximate Bayesian Computation sampler.
Expand Down
2 changes: 1 addition & 1 deletion cosmoabc/tests/test_ABC_algorithm.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import unittest
import os
Expand Down
2 changes: 1 addition & 1 deletion cosmoabc/tests/test_ABC_distance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Auxiliary script to test distance before using it in the ABC sampler.
Expand Down

0 comments on commit 5deece3

Please sign in to comment.