From: Ole Streicher Date: Thu, 12 Jan 2017 10:37:47 +0000 (+0100) Subject: Use external python modules instead of convenience copies X-Git-Tag: archive/raspbian/2.0.2-2+rpi1~1^2^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=091a74f51064d34ac160c2d38a1936b63f5cd1e5;p=python-astropy.git Use external python modules instead of convenience copies Gbp-Pq: Name external_python_pkgs.patch --- diff --git a/astropy/coordinates/angle_utilities.py b/astropy/coordinates/angle_utilities.py index ddaeaf6..06eefaf 100644 --- a/astropy/coordinates/angle_utilities.py +++ b/astropy/coordinates/angle_utilities.py @@ -64,7 +64,7 @@ class _AngleParser(object): @classmethod def _make_parser(cls): - from ..extern.ply import lex, yacc + from ply import lex, yacc # List of token names. tokens = ( diff --git a/astropy/extern/configobj.py b/astropy/extern/configobj.py index 8d1bd8c..e3bb0e0 100644 --- a/astropy/extern/configobj.py +++ b/astropy/extern/configobj.py @@ -7,5 +7,8 @@ currently installed version of python. Also, this should actually never actually show up as a docstring, because it should get overwritten by the appropriate configobj docstring. """ +from __future__ import absolute_import +import validate +import configobj + -from .configobj import configobj, validate, __doc__ diff --git a/astropy/extern/six.py b/astropy/extern/six.py index 5398fc0..fb3a30c 100644 --- a/astropy/extern/six.py +++ b/astropy/extern/six.py @@ -13,7 +13,7 @@ _SIX_MIN_VERSION = StrictVersion('1.10.0') # Update this to prevent Astropy from using its bundled copy of six # (but only if some other version of at least _SIX_MIN_VERSION can # be provided) -_SIX_SEARCH_PATH = ['astropy.extern.bundled.six', 'six'] +_SIX_SEARCH_PATH = ['six'] def _find_module(name, path=None): diff --git a/astropy/table/jsviewer.py b/astropy/table/jsviewer.py index ae99eb9..d856cf8 100644 --- a/astropy/table/jsviewer.py +++ b/astropy/table/jsviewer.py @@ -30,8 +30,8 @@ class Conf(_config.ConfigNamespace): conf = Conf() -EXTERN_JS_DIR = abspath(join(dirname(extern.__file__), 'js')) -EXTERN_CSS_DIR = abspath(join(dirname(extern.__file__), 'css')) +EXTERN_JS_DIR = '/usr/share/javascript' +EXTERN_CSS_DIR = EXTERN_JS_DIR IPYNB_JS_SCRIPT = """