Skip to content

Commit

Permalink
Merge pull request #26 from iwismer/py3_shebangs
Browse files Browse the repository at this point in the history
Update all shebangs to python 3
  • Loading branch information
jblindsay authored Mar 5, 2019
2 parents 7e96ee0 + 01aced1 commit 8839309
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
''' this module is used to build whitebox-tools.
'''
import os
Expand Down
1 change: 1 addition & 0 deletions lib_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
''' This script is intended to experiment with the use of a whitebox_tools shared library (DLL).
It is experimental and is not intended for widespread use.
'''
Expand Down
2 changes: 1 addition & 1 deletion wb_runner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

# This script is part of the WhiteboxTools geospatial analysis library.
# Authors: Dr. John Lindsay
Expand Down
2 changes: 1 addition & 1 deletion whitebox_example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
''' This module provides examples of how to call the whitebox_tool script and the
whitebox-tools geospatial analysis library using Python code.
'''
Expand Down
1 change: 1 addition & 0 deletions whitebox_plugin_generator.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
"""
This script is just used to automatically generate the convenience methods for each
of the plugin tools in the whitebox_tools.py script. It should be run each time new
Expand Down
2 changes: 1 addition & 1 deletion whitebox_tools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
''' This file is intended to be a helper for running whitebox-tools plugins from a Python script.
See whitebox_example.py for an example of how to use it.
'''
Expand Down

0 comments on commit 8839309

Please sign in to comment.