fix_shebangs
authorDebian Science Team <debian-science-maintainers@lists.alioth.debian.org>
Sun, 27 Oct 2019 11:38:37 +0000 (11:38 +0000)
committerRebecca N. Palmer <rebecca_palmer@zoho.com>
Sun, 27 Oct 2019 11:38:37 +0000 (11:38 +0000)
The bug was in pandas/tests/io/generate_legacy_storage_files.py

Author: Rebecca N. Palmer <rebecca_palmer@zoho.com>
Forwarded: no

Gbp-Pq: Name fix_shebangs.patch

ci/print_skipped.py
ci/print_versions.py
doc/make.py
pandas/core/computation/eval.py
pandas/tests/io/generate_legacy_storage_files.py
pandas/tests/plotting/common.py
scripts/announce.py
scripts/download_wheels.py
scripts/find_undoc_args.py
scripts/validate_docstrings.py
setup.py

index dd2180f6eeb193cf5f7ef19cbd2364e448bbdbe0..492189c219b94d7642ea19242e0edc41ddd60fa5 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 import math
index 1d6814d16a105f281e3c67ff77adc743382a3826..4f3de61ad46ff8350b8493b0805e051a50ed72a5 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 
 def show_versions(as_json=False):
index f94ceda9d3691c1bd7b59dfac4a8df115b7cb6e8..a20315c4f33d9121872ad6fe211c4cbfed3f84ed 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Python script for building documentation.
 
index 434d7f6ccfe13ec6f833619c28dd982a9193333c..ef7fc8775b0925c62456129a56553e84c90be75d 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """Top level ``eval`` module.
 """
index 9f1ac8b1e677b2c3d8f7f1e8bd30e17aab96fb4b..b2efe90d2280d533ba42653e61cc0c3d5a2fc2c6 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/env/bin python
+#!/usr/bin/env python3
 
 """
 self-contained to write legacy storage (pickle/msgpack) files
index 09687dd97bd43b7863d8d3a17804a80f8c487b08..4da435ae4ec197480cea56c103a02f0db456e640 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # coding: utf-8
 
 import pytest
index 7b7933eba54dde5f505a5a4fc7f4b5841c9a0f8a..67e84c2260ccbe1459ea88f8051ad831d7733fc5 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # -*- encoding:utf-8 -*-
 """
 Script to generate contributor and pull request lists
index f5cdbbe36d90ddd6bd5222d475f40c14a5be1555..33008119fbe52a1e09c8d6ff72e981ea7c45deda 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """Fetch wheels from wheels.scipy.org for a pandas version."""
 import argparse
 import pathlib
index a135c8e5171a158a894251aabd1cd108e9aec5d7..2ffd5448419f65c6a792aa8c4d64eaab90ae6a03 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 """
 Script that compares the signature arguments with the ones in the docsting
index aed3eb2f1226da3af0a1b49455332f13bbeecd36..96bd06b191df280bfc309f26199840a9833df4ad 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Analyze docstrings to detect errors.
 
index 5d6bbbcf7b86299d1367e3f6ca4b3228ae430fd7..2d9f1c54864e21240a68900e47c6d03a631e316a 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Parts of this file were taken from the pyzmq project