diff --git a/astroquery-0.4.1.tar.gz b/astroquery-0.4.11.tar.gz similarity index 36% rename from astroquery-0.4.1.tar.gz rename to astroquery-0.4.11.tar.gz index 85cdbc540d95e0eaff0173feebc771534d17ce52..10d1548f0fa0e1893e19a7b007088ee17a8685e1 100644 Binary files a/astroquery-0.4.1.tar.gz and b/astroquery-0.4.11.tar.gz differ diff --git a/python-astroquery.spec b/python-astroquery.spec index 87649b7da08926b54d8dfd722609766115f6109e..3acc2f13061b4d6b9eff07610375ce77ed64814d 100644 --- a/python-astroquery.spec +++ b/python-astroquery.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-astroquery -Version: 0.4.1 +Version: 0.4.11 Release: 1 Summary: Functions and classes to access online astronomical data resources License: BSD URL: http://astropy.org/astroquery -Source0: https://files.pythonhosted.org/packages/1b/f8/4690523783691ed816b3469c3ec611af3798594d37ade510dd918d59f57e/astroquery-0.4.1.tar.gz +Source0: https://files.pythonhosted.org/packages/32/48/273dbde090e071f9d264d084bc49193d126498d2906172b78febd9d62e28/astroquery-0.4.11.tar.gz BuildArch: noarch @@ -17,6 +17,7 @@ Summary: Functions and classes to access online astronomical data resources Provides: python-astroquery BuildRequires: python3-devel BuildRequires: python3-setuptools +BuildRequires: python3-pip %description -n python3-astroquery Functions and classes to access online astronomical data resources @@ -27,45 +28,49 @@ Provides: python3-astroquery-doc Functions and classes to access online astronomical data resources %prep -%autosetup -n astroquery-0.4.1 +%autosetup -n astroquery-%{version} %build -%py3_build +%pyproject_build %install -%py3_install +%pyproject_install install -d -m755 %{buildroot}/%{_pkgdocdir} if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} -if [ -d usr/lib ]; then - find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst -fi +touch filelist.lst if [ -d usr/lib64 ]; then - find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst + find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/bin ]; then - find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/sbin ]; then - find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi touch doclist.lst if [ -d usr/share/man ]; then - find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . mv %{buildroot}/doclist.lst . %files -n python3-astroquery -f filelist.lst -%dir %{python3_sitelib}/* +%{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog -* Thu Jul 16 2020 Python_Bot +* Wed Dec 03 2025 liutao - 0.4.11-1 +- Update package to version 0.4.11 +- BUG: fix Heasarch.locate_data returning empty rows +- Euclid: upgrade the TAP method upload_table to upload tables in fits format +- GAIA: new DR4 datalink retrieve type MEAN_SPECTRUM_RVS + +* Thu Jul 16 2020 Python_Bot - 0.4.1-1 - Package Spec generated