From 332dcbc0f9ac2866e2cfe21d8f99e0bfcdf4a090d0c13e29cd471cd19420d197 Mon Sep 17 00:00:00 2001 From: Benjamin Greiner Date: Fri, 30 Aug 2024 15:31:50 +0000 Subject: [PATCH] =?UTF-8?q?-=20Update=20to=206.1.3=20=20=20##=20Bug=20Fixe?= =?UTF-8?q?s=20=20=20###=20astropy.io.fits=20=20=20*=20Fix=20reading=20zer?= =?UTF-8?q?o-width=20columns=20such=20as=200A=20fields.=20[#16894]=20=20?= =?UTF-8?q?=20*=20Ensure=20that=20QTable,=20like=20Table,=20can=20read=20z?= =?UTF-8?q?ero-length=20string=20=20=20=20=20columns,=20and=20not=20conver?= =?UTF-8?q?t=20them=20to=20length=201=20strings.=20In=20the=20=20=20=20=20?= =?UTF-8?q?process,=20avoid=20a=20needless=20copy=20of=20all=20the=20data?= =?UTF-8?q?=20for=20QTable.=20=20=20=20=20[#16898]=20=20=20###=20astropy.i?= =?UTF-8?q?o.votable=20=20=20*=20Fix=20KeyError=20when=20parsing=20certain?= =?UTF-8?q?=20VOTables.=20[#16830]=20=20=20###=20astropy.modeling=20=20=20?= =?UTF-8?q?*=20Fixed=20the=20fit=5Fderiv=20calculations=20in=20the=20Loren?= =?UTF-8?q?tz1D=20model.=20=20=20=20=20[#16794]=20=20=20###=20astropy.tabl?= =?UTF-8?q?e=20=20=20*=20Pretty-printing=20of=20Tables=20now=20also=20work?= =?UTF-8?q?s=20in=20the=20presence=20of=20=20=20=20=20zero-length=20string?= =?UTF-8?q?=20columns=20(which=20sometimes=20are=20present=20in=20FITS=20?= =?UTF-8?q?=20=20=20=20tables).=20[#16898]=20=20=20###=20astropy.utils=20?= =?UTF-8?q?=20=20*=20Fix=20the=20return=20type=20for=20np.broadcast=5Farra?= =?UTF-8?q?ys=20on=20a=20single=20Masked=20=20=20=20=20instance:=20it=20no?= =?UTF-8?q?w=20correctly=20returns=20a=201-element=20sequence=20instead=20?= =?UTF-8?q?=20=20=20=20of=20a=20single=20array,=20just=20like=20would=20be?= =?UTF-8?q?=20the=20case=20with=20a=20regular=20=20=20=20=20array.=20[#168?= =?UTF-8?q?42]=20=20=20###=20astropy.wcs=20=20=20*=20Fix=20a=20bug=20where?= =?UTF-8?q?=20wcs=5Finfo=5Fstr=E2=80=99s=20results=20would=20look=20differ?= =?UTF-8?q?ent=20in=20=20=20=20=20numpy=202=20VS=20numpy=201.=20[#16586]?= =?UTF-8?q?=20=20=20##=20Other=20Changes=20and=20Additions=20=20=20*=20The?= =?UTF-8?q?=20minimum=20required=20version=20of=20PyArrow=20is=20now=20v7.?= =?UTF-8?q?0.0.=20[#16785]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-astropy?expand=0&rev=137 --- astropy-6.1.2.tar.gz | 3 --- astropy-6.1.3.tar.gz | 3 +++ python-astropy.changes | 31 +++++++++++++++++++++++++++++++ python-astropy.spec | 4 ++-- 4 files changed, 36 insertions(+), 5 deletions(-) delete mode 100644 astropy-6.1.2.tar.gz create mode 100644 astropy-6.1.3.tar.gz diff --git a/astropy-6.1.2.tar.gz b/astropy-6.1.2.tar.gz deleted file mode 100644 index 3330d45..0000000 --- a/astropy-6.1.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2103d4e24e90389a820cfcdaaf4ca2d1ab22e5fd72978d147ff5cace54f1d3a -size 7055575 diff --git a/astropy-6.1.3.tar.gz b/astropy-6.1.3.tar.gz new file mode 100644 index 0000000..269f219 --- /dev/null +++ b/astropy-6.1.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac834cdedc1f6b5ce6f941f7bfbbfc58fca861eb172bcf72dd90aff8f750970 +size 7057076 diff --git a/python-astropy.changes b/python-astropy.changes index b0e6c68..66102b1 100644 --- a/python-astropy.changes +++ b/python-astropy.changes @@ -1,3 +1,34 @@ +------------------------------------------------------------------- +Fri Aug 30 15:11:17 UTC 2024 - Ben Greiner + +- Update to 6.1.3 + ## Bug Fixes + ### astropy.io.fits + * Fix reading zero-width columns such as 0A fields. [#16894] + * Ensure that QTable, like Table, can read zero-length string + columns, and not convert them to length 1 strings. In the + process, avoid a needless copy of all the data for QTable. + [#16898] + ### astropy.io.votable + * Fix KeyError when parsing certain VOTables. [#16830] + ### astropy.modeling + * Fixed the fit_deriv calculations in the Lorentz1D model. + [#16794] + ### astropy.table + * Pretty-printing of Tables now also works in the presence of + zero-length string columns (which sometimes are present in FITS + tables). [#16898] + ### astropy.utils + * Fix the return type for np.broadcast_arrays on a single Masked + instance: it now correctly returns a 1-element sequence instead + of a single array, just like would be the case with a regular + array. [#16842] + ### astropy.wcs + * Fix a bug where wcs_info_str’s results would look different in + numpy 2 VS numpy 1. [#16586] + ## Other Changes and Additions + * The minimum required version of PyArrow is now v7.0.0. [#16785] + ------------------------------------------------------------------- Fri Aug 16 09:27:21 UTC 2024 - Benjamin Greiner diff --git a/python-astropy.spec b/python-astropy.spec index 98ddd6d..634ceb7 100644 --- a/python-astropy.spec +++ b/python-astropy.spec @@ -49,7 +49,7 @@ %{?sle15_python_module_pythons} Name: python-astropy%{psuffix} -Version: 6.1.2 +Version: 6.1.3 Release: 0 Summary: Community-developed python astronomy tools License: BSD-3-Clause @@ -73,7 +73,7 @@ BuildRequires: hdf5-devel BuildRequires: pkgconfig BuildRequires: python-rpm-macros Requires: python-PyYAML >= 3.13 -Requires: python-astropy-iers-data >= 0.2024.4.29.0.28.48 +Requires: python-astropy-iers-data >= 0.2024.7.29.0.32.7 Requires: python-numpy >= 1.23 Requires: python-packaging >= 19.0 Requires: python-pyerfa >= 2.0.1.1