Skip to content

Commit

Permalink
Merge pull request ESCOMP#162 from ESMCI/fischer/python3
Browse files Browse the repository at this point in the history
Change shebang lines to python3

User interface changes?: [No
[ If yes, describe what changed, and steps taken to ensure backward compatibilty ]

Fixes: ESCOMP#160

Testing:
test removed:
unit tests: Ran 118 tests in 0.041s
system tests:
manual testing: Ran checkout_externals -o and checkout_externals -S for cesm2_3
  • Loading branch information
fischer-ncar committed Oct 27, 2021
2 parents 2fd941a + d4f1b1e commit a3b3a03
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion checkout_externals
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Main driver wrapper around the manic/checkout utility.
Expand Down
2 changes: 1 addition & 1 deletion manic/checkout.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Tool to assemble repositories represented in a model-description file.
Expand Down
2 changes: 1 addition & 1 deletion manic/externals_description.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Model description
Expand Down
2 changes: 1 addition & 1 deletion manic/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
"""
Common public utilities for manic package
Expand Down
2 changes: 1 addition & 1 deletion test/test_sys_checkout.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_sys_repository_git.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Tests of some of the functionality in repository_git.py that actually
interacts with git repositories.
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_externals_description.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_externals_status.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for the manic external status reporting module.
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_repository.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_repository_git.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_repository_svn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""Unit test driver for checkout_externals
Expand Down

0 comments on commit a3b3a03

Please sign in to comment.