From a30398517e1a61d39c1051e7a0ebc44699ad3501 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 15 Feb 2017 22:17:00 -0500 Subject: Numpy 1.12 breakage (#50) * Numpy 1.12 breakage * Add relevant incident data --- source/compat.rst | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/source/compat.rst b/source/compat.rst index e16bb2b..b17e1ca 100644 --- a/source/compat.rst +++ b/source/compat.rst @@ -10,15 +10,38 @@ If you spot a compatibility problem not listed here please let us know by sendin **You may be affected by an issue if you have updated your AstroConda environment on or after the dates listed in each section below.** +02/11/2017 +========== + +NumPy v1.12.0 modified the way array slicing is handled and triggered a regression in the ``acstools`` package: + + * ``acstools <= 2.0.6`` - 2.0.7 released (2/16/2017) + + +The traceback message to be aware of is as follows: + +.. code-block:: python + + TypeError('slice indices must be integers or None or have an __index__ method',) + + +Recommended user actions: + + * Upgrade ``acstools`` to version 2.0.7 (i.e. ``conda update acstools``) + +Alternative user actions: + + * Downgrade ``numpy`` to version 1.11 (i.e. ``conda install numpy=1.11``) + 12/23/2016 ========== AstroPy v1.3 fully deprecated calls to ``astropy.io.fits.new_table``. The following packages are known to be incompatible with this release: - * ``calcos =< 3.1.8`` - Bugfix pending + * ``calcos <= 3.1.8`` - Bugfix pending * ``costools <= 1.2.1`` - Bugfix pending - * ``fitsblender =< 0.2.6`` - 0.3.0 released (01/17/2017) + * ``fitsblender <= 0.2.6`` - 0.3.0 released (01/17/2017) Recommended user actions: -- cgit