Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use 'python3' to access Python #608

Merged
merged 2 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading