1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: "Michael R. Crusoe" <crusoe@debian.org>
Date: Tue, 14 Oct 2025 15:05:01 +0200
Subject: add missing "#!" sequence that marks interpreted scripts
Forwarded: https://github.com/matplotlib/basemap/pull/642
---
examples/lic_demo.py | 1 +
examples/streamplot_demo.py | 1 +
2 files changed, 2 insertions(+)
diff --git a/examples/lic_demo.py b/examples/lic_demo.py
index 4beb25c..a0c8509 100755
--- a/examples/lic_demo.py
+++ b/examples/lic_demo.py
@@ -1,3 +1,4 @@
+#!/usr/bin/env python3
from __future__ import (absolute_import, division, print_function)
# example showing how to use Line Integral Convolution to visualize a vector
diff --git a/examples/streamplot_demo.py b/examples/streamplot_demo.py
index 3fc605b..144bc21 100755
--- a/examples/streamplot_demo.py
+++ b/examples/streamplot_demo.py
@@ -1,3 +1,4 @@
+#!/usr/bin/env python3
from __future__ import (absolute_import, division, print_function)
# example showing how to use streamlines to visualize a vector
|