Skip to content

Commit

Permalink
change all shebangs to explicitly use python3
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Jun 29, 2021
1 parent 537740f commit 0d54e30
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cime_config/buildexe
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
build model executable
Expand Down
2 changes: 1 addition & 1 deletion cime_config/buildnml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
"""Namelist creator for CIME's driver.
"""
import os, sys
Expand Down
2 changes: 1 addition & 1 deletion cime_config/runseq/driver_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

# Inherit from the dictionary class
class DriverConfig(dict):
Expand Down
2 changes: 1 addition & 1 deletion cime_config/runseq/gen_runseq.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

class RunSeq:
def __init__(self, outfile):
Expand Down
2 changes: 1 addition & 1 deletion cime_config/runseq/runseq_D.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import os, shutil, sys
from CIME.utils import expect
Expand Down
2 changes: 1 addition & 1 deletion cime_config/runseq/runseq_TG.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import os, shutil, sys
from CIME.utils import expect
Expand Down
2 changes: 1 addition & 1 deletion cime_config/runseq/runseq_general.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import os, shutil, sys
from CIME.utils import expect
Expand Down

0 comments on commit 0d54e30

Please sign in to comment.