Skip to content

Commit

Permalink
Merge pull request #210 from jedwards4b/force_py3
Browse files Browse the repository at this point in the history
change all shebangs to explicitly use python3
  • Loading branch information
jedwards4b authored Jun 30, 2021
2 parents 537740f + 0d54e30 commit e4f5384
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 e4f5384

Please sign in to comment.