Skip to content

Commit 30823e3

Browse files
committed
d/s/examples/*.py: use python3 in shebang.
With python2 deprecation, it should be safe to enforce use of the python3 shebang everywhere. Besides, there can be inconsistencies between distributions, and even system configuration within a single distribution, on whether to ship python as python2, as python3, or not at all. Signed-off-by: Étienne Mollier <[email protected]>
1 parent 481847b commit 30823e3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/source/examples/imageWithMetadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

44
"""Copyright © 2014 German Neuroinformatics Node (G-Node)

docs/source/examples/multipleTimeSeries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33
"""Copyright © 2014 German Neuroinformatics Node (G-Node)
44

docs/source/examples/singleROI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

44
"""Copyright © 2014 German Neuroinformatics Node (G-Node)

docs/source/examples/taggedFeature.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

44
"""Copyright © 2014 German Neuroinformatics Node (G-Node)

0 commit comments

Comments
 (0)