Skip to content

Commit

Permalink
Merge pull request #608 from sebrowne/python3
Browse files Browse the repository at this point in the history
Use 'python3' to access Python
  • Loading branch information
bartlettroscoe authored Oct 10, 2024
2 parents 807a598 + 3dca096 commit 28a3635
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion common_tools/git/cherry-pick-commits.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# @HEADER
# ************************************************************************
#
Expand Down
2 changes: 1 addition & 1 deletion common_tools/git/commit-summary-over-periods.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# @HEADER
# ************************************************************************
#
Expand Down
2 changes: 1 addition & 1 deletion common_tools/git/hooks/server-side/get_recipients.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import commands
import os
Expand Down
2 changes: 1 addition & 1 deletion common_tools/git/hooks/server-side/update_push_log.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# @HEADER
# ************************************************************************
#
Expand Down
2 changes: 1 addition & 1 deletion common_tools/test/hhmmss_math.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
#
# This simple set of python functions makes it easy to do simple math with
# times formatted as <hr>h<min>m<sec>s. This makes it easier to analyze
Expand Down
2 changes: 1 addition & 1 deletion common_tools/test/kill-pstree.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# @HEADER
# ************************************************************************
#
Expand Down
2 changes: 1 addition & 1 deletion refactoring/remove_std_tribits_includes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

include_files_to_remove = [
"AddSubdirectories",
Expand Down
3 changes: 2 additions & 1 deletion tribits/doc/guides/TribitsGuidesBody.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4233,7 +4233,8 @@ repositories if specified). There are several python tools under
``tribits/ci_support/`` that read in this file and use the created
data-structure for various tasks. This file and these tools are used by
`checkin-test.py`_ and `tribits_ctest_driver()`_. But these tools can also be
used to construct other workflows and tools.
used to construct other workflows and tools. These tools require a Python3
installation and for the `python3` executable to be installed.

.. _TribitsDumpDepsXmlScript.cmake:

Expand Down

0 comments on commit 28a3635

Please sign in to comment.