forked from pool/python-astropy
Accepting request 562802 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/562802 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-astropy?expand=0&rev=3
This commit is contained in:
parent
99f782496b
commit
cb0311119a
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4544a422b1173d79b2d65ba74c627f04a5fd8530d97fb604752d657d754e103d
|
||||
size 8225348
|
3
astropy-2.0.3.tar.gz
Normal file
3
astropy-2.0.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fdfc0248f6250798ed6d1327be609cb901db89ae01fc768cfbc9e263bdf56f4f
|
||||
size 8297110
|
@ -1,3 +1,89 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 5 09:01:00 UTC 2018 - alarrosa@suse.com
|
||||
|
||||
- Update to astropy 2.0.3
|
||||
* Bugfixes:
|
||||
* astropy.coordinates
|
||||
- Ecliptic frame classes now support attributes v_x, v_y, v_z when using
|
||||
with a Cartesian representation.
|
||||
- Added a nicer error message when accidentally calling
|
||||
frame.representation instead of frame.data in the context of methods
|
||||
that use ._apply().
|
||||
- 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.
|
||||
- Improved accuracy of velocity calculation in
|
||||
EarthLocation.get_gcrs_posvel.
|
||||
- Improved accuracy of radial velocity corrections in
|
||||
SkyCoord.radial_velocity_correction`.
|
||||
- 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.
|
||||
* astropy.extern
|
||||
- Version 0.2.1 of pytest-astropy is included as an external package.
|
||||
* astropy.io.fits
|
||||
- Fix writing the result of fitsdiff to file with --output-file.
|
||||
- Fix a minor bug where FITS_rec instances can not be indexed with tuples
|
||||
and other sequences that end up with a scalar.
|
||||
* astropy.io.misc
|
||||
- Fix ImportError when hdf5 is imported first in a fresh Python
|
||||
interpreter in Python 3.
|
||||
* astropy.nddata
|
||||
- Suppress errors during WCS creation in CCDData.read().
|
||||
- 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.
|
||||
* astropy.stats
|
||||
- Fixed an issue where the biweight statistics functions would sometimes
|
||||
cause runtime underflow/overflow errors for float32 input arrays.
|
||||
* 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
|
||||
re-use the same cache key.
|
||||
- Fixed a problem when comparing a unicode masked column (on left side)
|
||||
to a bytes masked column (on right side).
|
||||
- Fixed a problem in comparing masked columns in bytes and unicode when
|
||||
the unicode had masked entries.
|
||||
* astropy.tests
|
||||
- Fixed a bug that causes tests for rst files to not be run on certain
|
||||
platforms.
|
||||
- Fixed a bug that caused the doctestplus plugin to not work nicely with
|
||||
the hypothesis package.
|
||||
- Fixed a bug that meant that the data.astropy.org mirror could not be
|
||||
used when using --remote-data=astropy.
|
||||
- Support compatibility with new pytest-astropy plugins.
|
||||
- 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.
|
||||
* astropy.time
|
||||
- Initialization of Time instances now is consistent for all formats to
|
||||
ensure that -0.5 <= jd2 < 0.5.
|
||||
* astropy.units
|
||||
- Ensure that Quantity slices can be set with objects that have a unit
|
||||
attribute (such as Column).
|
||||
* astropy.utils
|
||||
- download_files_in_parallel now respects the given timeout value.
|
||||
- Fixed bugs in remote data handling and also in IERS unit test related
|
||||
to path URL, and URI normalization on Windows.
|
||||
- Fixed a bug that caused get_pkg_data_fileobj to not work correctly when
|
||||
used with non-local data from inside packages.
|
||||
- Make sure get_pkg_data_fileobj fails if the URL can not be read, and
|
||||
correctly falls back on the mirror if necessary.
|
||||
- Fix the finddiff option in find_current_module to properly deal with
|
||||
submodules.
|
||||
- Fixed pyreadline import in utils.console.isatty for older IPython
|
||||
versions on Windows.
|
||||
* astropy.visualization
|
||||
- Fixed the vertical orientation of the fits2bitmap output bitmap image
|
||||
to match that of the FITS image.
|
||||
- Added a workaround for a bug in matplotlib so that the fits2bitmap
|
||||
script generates the correct output file type.
|
||||
* Other Changes and Additions
|
||||
* No longer require LaTeX to build the documentation locally and use
|
||||
mathjax instead.
|
||||
* Fixed broken links in the documentation.
|
||||
* Ensured that all tests use the Astropy data mirror if needed.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 14 09:47:18 UTC 2017 - alarrosa@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-astropy
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-astropy
|
||||
Version: 2.0.2
|
||||
Version: 2.0.3
|
||||
Release: 0
|
||||
Summary: Community-developed python astronomy tools
|
||||
License: BSD-3-Clause
|
||||
|
Loading…
Reference in New Issue
Block a user