Astropy

Latest version: v7.0.1

Safety actively analyzes 724004 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 11 of 19

2.0.7

Not secure
==========================

Bug Fixes
---------

astropy.modeling
^^^^^^^^^^^^^^^^

- Fixed ``Tabular`` models to not change the shape of data. [7411]

astropy.stats
^^^^^^^^^^^^^

- In ``freedman_bin_width``, if the data has too small IQR,
raise ``ValueError``. [7248, 7402]

astropy.table
^^^^^^^^^^^^^

- Fix a performance issue in ``MaskedColumn`` where initialization was
extremely slow for large arrays with the default ``mask=None``. [7422]

- Fix printing table row indexed with unsigned integer. [7469]

- Fix copy of mask when copying a Table, as this is no more done systematically
by Numpy since version 1.14. Also fixed a problem when MaskedColumn was
initialized with ``mask=np.ma.nomask``. [7486]

astropy.time
^^^^^^^^^^^^

- Fixed a bug in Time that raised an error when initializing a subclass of Time
with a Time object. [7453]

astropy.utils
^^^^^^^^^^^^^

- Fixed a bug that improperly handled unicode case of URL mirror in Python 2.
[7493]

astropy.visualization
^^^^^^^^^^^^^^^^^^^^^

- Fixed a bug that prevented legends from being added to plots done with
units. [7510]


Other Changes and Additions
---------------------------

- Bundled ``pytest-remotedata`` plugin is upgraded to 0.3. [7493]

2.0.6

Not secure
==========================

Bug Fixes
---------

astropy.convolution
^^^^^^^^^^^^^^^^^^^

- convolve(boundary=None) requires the kernel to be smaller than the image.
This was never actually checked, it now is and an exception is raised.
[7313]

astropy.units
^^^^^^^^^^^^^

- ``u.quantity_input`` no longer errors if the return annotation for a
function is ``None``. [7336, 7380]

astropy.visualization
^^^^^^^^^^^^^^^^^^^^^

- Explicitly default to origin='lower' in WCSAxes. [7331]

- Lists of units are now converted in the Matplotlib unit converter. This means
that for Matplotlib versions later than 2.2, more plotting functions now work
with units (e.g. errorbar). [7037]


Other Changes and Additions
---------------------------

- Updated the bundled CFITSIO library to 3.44. This is to remedy another
critical security vulnerability that was identified by NASA. See
``cextern/cfitsio/docs/changes.txt`` for additional information. [7370]

2.0.5

Not secure
==========================

Bug Fixes
---------

astropy.coordinates
^^^^^^^^^^^^^^^^^^^

- Add a workaround for a bug in the einsum function in Numpy 1.14.0. [7187]

- Fix problems with printing ``Angle`` instances under numpy 1.14.1. [7234]

astropy.io.fits
^^^^^^^^^^^^^^^

- Fixed the ``fitsdiff`` script for matching fits file with one in a
directory path. [7085]

- Make sure that lazily-loaded ``HDUList`` is automatically loaded when calling
``hdulist.pop``. [7186]

astropy.modeling
^^^^^^^^^^^^^^^^

- Propagate weights to underlying fitter in ``FittingWithOutlierRemoval`` [7249]

astropy.tests
^^^^^^^^^^^^^

- Support dotted package names as namespace packages when gathering test
coverage. [7170]

astropy.visualization
^^^^^^^^^^^^^^^^^^^^^

- Matplotlib axes have the ``axisbelow`` property to control the z-order of
ticks, tick labels, and grid lines. WCSAxes will now respect this property.
This is useful for drawing scale bars or inset boxes, which should have a
z-order that places them above all ticks and gridlines. [7098]


Other Changes and Additions
---------------------------

- Updated the bundled CFITSIO library to 3.430. This is to remedy a critical
security vulnerability that was identified by NASA. See
``cextern/cfitsio/docs/changes.txt`` for additional information. [7274, 7275]

2.0.4

Not secure
==========================

Bug Fixes
---------

astropy.convolution
^^^^^^^^^^^^^^^^^^^

- Fixed IndexError when ``preserve_nan=True`` in ``convolve_fft``. Added
testing with ``preserve_nan=True``. [7000]

astropy.coordinates
^^^^^^^^^^^^^^^^^^^

- The ``sites.json`` file is now parsed explicitly with a UTF-8 encoding. This
means that future revisions to the file with unicode observatory names can
be done without breaking the site registry parser. [7082]

- Working around a bug in Numpy 1.14.0 that broke some coordinate
transformations. [7105]

- Fixed a bug where negative angles could be rounded wrongly when converting
to a string with seconds omitted. [7148]

astropy.io.fits
^^^^^^^^^^^^^^^

- When datafile is missing, fits.tabledump uses input file name to build
output file name. Fixed how it gets input file name from HDUList. [6976]

- Fix in-place updates to scaled columns. [6956]

astropy.io.registry
^^^^^^^^^^^^^^^^^^^

- Fixed bug in identifying inherited registrations from multiple ancestors [7156]

astropy.modeling
^^^^^^^^^^^^^^^^

- Fixed a bug in ``LevMarLSQFitter`` when fitting 2D models with constraints. [6705]

astropy.utils
^^^^^^^^^^^^^

- ``download_file`` function will check for cache downloaded from mirror URL
first before attempting actual download if primary URL is unavailable. [6987]

astropy.visualization
^^^^^^^^^^^^^^^^^^^^^

- Fixed test failures for ``astropy.visualization.wcsaxes`` which were due to
local matplotlibrc files being taken into account. [7132]


Other Changes and Additions
---------------------------

- Fixed broken links in the documentation. [6745]

- Substantial performance improvement (potentially >1000x for some cases) when
converting non-scalar ``coordinates.Angle`` objects to strings. [7004]

2.0.3

Not secure
==========================

Bug Fixes
---------

astropy.coordinates
^^^^^^^^^^^^^^^^^^^

- Ecliptic frame classes now support attributes ``v_x``, ``v_y``, ``v_z`` when
using with a Cartesian representation. [6569]

- Added a nicer error message when accidentally calling ``frame.representation``
instead of ``frame.data`` in the context of methods that use ``._apply()``.
[6561]

- Creating a new ``SkyCoord`` from a list of multiple ``SkyCoord`` objects now
yield the correct type of frame, and works at all for non-equatorial frames.
[6612]

- Improved accuracy of velocity calculation in ``EarthLocation.get_gcrs_posvel``.
[6699]

- Improved accuracy of radial velocity corrections in
``SkyCoord.radial_velocity_correction. [6861]

- The precision of ecliptic frames is now much better, after removing the
nutation from the rotation and fixing the computation of the position of the
Sun. [6508]

astropy.extern
^^^^^^^^^^^^^^

- Version 0.2.1 of ``pytest-astropy`` is included as an external package.
[6918]

astropy.io.fits
^^^^^^^^^^^^^^^

- Fix writing the result of ``fitsdiff`` to file with ``--output-file``. [6621]

- Fix a minor bug where ``FITS_rec`` instances can not be indexed with tuples
and other sequences that end up with a scalar. [6955, 6966]

astropy.io.misc
^^^^^^^^^^^^^^^

- Fix ``ImportError`` when ``hdf5`` is imported first in a fresh Python
interpreter in Python 3. [6604, 6610]

astropy.nddata
^^^^^^^^^^^^^^

- Suppress errors during WCS creation in CCDData.read(). [6500]

- Fixed a problem with ``CCDData.read`` when the extension wasn't given and the
primary HDU contained no ``data`` but another HDU did. In that case the header
were not correctly combined. [6489]

astropy.stats
^^^^^^^^^^^^^

- Fixed an issue where the biweight statistics functions would
sometimes cause runtime underflow/overflow errors for float32 input
arrays. [6905]

astropy.table
^^^^^^^^^^^^^

- Fixed a problem when printing a table when a column is deleted and
garbage-collected, and the format function caching mechanism happens
to reuse the same cache key. [6714]

- Fixed a problem when comparing a unicode masked column (on left side) to
a bytes masked column (on right side). [6899]

- Fixed a problem in comparing masked columns in bytes and unicode when the
unicode had masked entries. [6899]

astropy.tests
^^^^^^^^^^^^^

- Fixed a bug that causes tests for rst files to not be run on certain
platforms. [6555, 6608]

- Fixed a bug that caused the doctestplus plugin to not work nicely with the
hypothesis package. [6605, 6609]

- Fixed a bug that meant that the data.astropy.org mirror could not be used when
using --remote-data=astropy. [6724]

- Support compatibility with new ``pytest-astropy`` plugins. [6918]

- When testing, astropy (or the package being tested) is now installed to
a temporary directory instead of copying the build. This allows
entry points to work correctly. [6890]

astropy.time
^^^^^^^^^^^^

- Initialization of Time instances now is consistent for all formats to
ensure that ``-0.5 <= jd2 < 0.5``. [6653]

astropy.units
^^^^^^^^^^^^^

- Ensure that ``Quantity`` slices can be set with objects that have a ``unit``
attribute (such as ``Column``). [6123]

astropy.utils
^^^^^^^^^^^^^

- ``download_files_in_parallel`` now respects the given ``timeout`` value.
[6658]

- Fixed bugs in remote data handling and also in IERS unit test related to path
URL, and URI normalization on Windows. [6651]

- Fixed a bug that caused ``get_pkg_data_fileobj`` to not work correctly when
used with non-local data from inside packages. [6724]

- Make sure ``get_pkg_data_fileobj`` fails if the URL can not be read, and
correctly falls back on the mirror if necessary. [6767]

- Fix the ``finddiff`` option in ``find_current_module`` to properly deal
with submodules. [6767]

- Fixed ``pyreadline`` import in ``utils.console.isatty`` for older IPython
versions on Windows. [6800]

astropy.visualization
^^^^^^^^^^^^^^^^^^^^^

- Fixed the vertical orientation of the ``fits2bitmap`` output bitmap
image to match that of the FITS image. [6844, 6969]

- Added a workaround for a bug in matplotlib so that the ``fits2bitmap``
script generates the correct output file type. [6969]


Other Changes and Additions
---------------------------

- No longer require LaTeX to build the documentation locally and
use mathjax instead. [6701]

- Ensured that all tests use the Astropy data mirror if needed. [6767]

2.0.2

Not secure
==========================

Bug Fixes
---------

astropy.coordinates
^^^^^^^^^^^^^^^^^^^

- Ensure transformations via ICRS also work for coordinates that use cartesian
representations. [6440]

- Fixed a bug that was preventing ``SkyCoord`` objects made from lists of other
coordinate objects from being written out to ECSV files. [6448]

astropy.io.fits
^^^^^^^^^^^^^^^

- Support the ``GZIP_2`` FITS image compression algorithm as claimed
in docs. [6486]

astropy.io.votable
^^^^^^^^^^^^^^^^^^

- Fixed a bug that wrote out VO table as version 1.2 instead of 1.3. [6521]

astropy.table
^^^^^^^^^^^^^

- Fix a bug when combining unicode columns via join or vstack. The character
width of the output column was a factor of 4 larger than needed. [6459]

astropy.tests
^^^^^^^^^^^^^

- Fixed running the test suite using --parallel. [6415]

- Added error handling for attempting to run tests in parallel without having
the ``pytest-xdist`` package installed. [6416]

- Fixed issue running doctests with pytest>=3.2. [6423, 6430]

- Fixed issue caused by antivirus software in response to malformed compressed
files used for testing. [6522]

- Updated top-level config file to properly ignore top-level directories.
[6449]

astropy.units
^^^^^^^^^^^^^

- Quantity._repr_latex_ now respects precision option from numpy
printoptions. [6412]

astropy.utils
^^^^^^^^^^^^^

- For the ``deprecated_renamed_argument`` decorator, refer to the deprecation‘s
caller instead of ``astropy.utils.decorators``, to makes it easier to find
where the deprecation warnings comes from. [6422]

Page 11 of 19

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.