2016-04-09 14:08:21 +02:00
|
|
|
%global srcname pandas
|
|
|
|
|
2012-08-30 12:23:02 +05:30
|
|
|
|
2016-04-09 14:08:21 +02:00
|
|
|
Name: python-%{srcname}
|
2019-08-24 12:07:05 +02:00
|
|
|
Version: 0.25.1
|
2019-09-13 04:21:17 -04:00
|
|
|
Release: 2%{?dist}
|
2012-08-30 12:23:02 +05:30
|
|
|
Summary: Python library providing high-performance data analysis tools
|
|
|
|
|
|
|
|
License: BSD
|
2019-08-24 11:39:17 +02:00
|
|
|
URL: https://pandas.pydata.org/
|
2016-07-13 15:05:40 +02:00
|
|
|
Source0: https://pypi.io/packages/source/p/pandas/%{srcname}-%{version}.tar.gz
|
2019-09-13 04:21:17 -04:00
|
|
|
# Fix Python 3.8.
|
|
|
|
# https://github.com/pandas-dev/pandas/pull/28101
|
|
|
|
Patch0001: https://github.com/pandas-dev/pandas/commit/cd2d804b80a9fa5aa9302d75cd927603ab80a7f0.patch
|
2016-04-09 14:08:21 +02:00
|
|
|
|
2019-08-24 11:39:17 +02:00
|
|
|
%global _description %{expand:
|
2016-04-09 14:08:21 +02:00
|
|
|
pandas is an open source, BSD-licensed library providing
|
|
|
|
high-performance, easy-to-use data structures and data
|
2019-08-24 11:39:17 +02:00
|
|
|
analysis tools for the Python programming language.}
|
|
|
|
|
|
|
|
%description %_description
|
2016-04-09 14:08:21 +02:00
|
|
|
|
2019-06-18 10:55:44 +02:00
|
|
|
%package -n python3-%{srcname}
|
2016-04-09 14:08:21 +02:00
|
|
|
Summary: Python library providing high-performance data analysis tools
|
2018-07-10 15:56:25 +02:00
|
|
|
BuildRequires: gcc
|
2018-07-22 00:08:16 +02:00
|
|
|
BuildRequires: gcc-c++
|
2016-04-09 14:08:21 +02:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
BuildRequires: python3-matplotlib
|
2014-04-04 11:34:44 +05:30
|
|
|
BuildRequires: python3-Cython
|
|
|
|
Requires: python3-pytz
|
2015-01-20 13:28:00 +01:00
|
|
|
Requires: python3-dateutil
|
2014-04-04 11:34:44 +05:30
|
|
|
Requires: python3-numpy
|
|
|
|
Requires: python3-scipy
|
|
|
|
Requires: python3-tables
|
|
|
|
Requires: python3-matplotlib
|
|
|
|
Requires: python3-Bottleneck
|
|
|
|
Requires: python3-numexpr
|
2018-01-16 14:16:37 -08:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
2016-10-20 11:04:17 +02:00
|
|
|
Recommends: python3-pandas-datareader
|
2016-01-03 13:30:21 +01:00
|
|
|
Recommends: python3-xlrd
|
2016-03-30 10:52:30 +02:00
|
|
|
Recommends: python3-xlwt
|
2016-01-03 13:30:21 +01:00
|
|
|
%endif
|
2014-04-04 11:34:44 +05:30
|
|
|
|
2016-03-30 10:52:30 +02:00
|
|
|
%{?python_provide:%python_provide python3-%{srcname}}
|
|
|
|
|
2019-08-24 11:39:17 +02:00
|
|
|
%description -n python3-%{srcname} %_description
|
2014-04-04 11:34:44 +05:30
|
|
|
|
2012-08-30 12:23:02 +05:30
|
|
|
%prep
|
2019-06-05 22:39:25 -04:00
|
|
|
%autosetup -n %{srcname}-%{version} -p1
|
2019-09-27 07:53:23 -06:00
|
|
|
# Cython is too old in RHEL8.0
|
|
|
|
%{!?el8:rm $(grep -rl '/\* Generated by Cython')}
|
2012-08-30 12:23:02 +05:30
|
|
|
|
2019-05-21 11:52:24 +02:00
|
|
|
%build
|
2015-10-28 14:03:27 -06:00
|
|
|
%py3_build
|
2019-05-21 11:52:24 +02:00
|
|
|
|
2014-04-04 11:34:44 +05:30
|
|
|
%install
|
2015-10-28 14:03:27 -06:00
|
|
|
%py3_install
|
2012-08-30 12:23:02 +05:30
|
|
|
|
2014-04-04 11:34:44 +05:30
|
|
|
%files -n python3-pandas
|
2015-03-24 11:23:45 +01:00
|
|
|
%doc RELEASE.md
|
|
|
|
%license LICENSE
|
2016-04-09 14:08:21 +02:00
|
|
|
%{python3_sitearch}/%{srcname}*
|
2014-04-04 11:34:44 +05:30
|
|
|
|
2012-08-30 12:23:02 +05:30
|
|
|
%changelog
|
2019-09-13 04:21:17 -04:00
|
|
|
* Fri Sep 13 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.25.1-2
|
|
|
|
- Backport patch for Python 3.8 compatibility
|
|
|
|
|
2019-08-24 12:07:05 +02:00
|
|
|
* Sat Aug 24 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.25.1-1
|
|
|
|
- Update to latest version
|
|
|
|
|
2019-08-19 10:48:50 +02:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.24.1-5
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-26 15:02:07 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.24.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-06-05 22:39:25 -04:00
|
|
|
* Thu Jun 27 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.1-3
|
|
|
|
- Fix doc build with numpydoc 0.9
|
|
|
|
|
2019-06-18 10:55:44 +02:00
|
|
|
* Tue Jun 18 2019 Miro Hrončok <mhroncok@redhat.com> - 0.24.1-2
|
|
|
|
- Subpackage python2-pandas has been removed
|
|
|
|
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
|
|
|
2019-03-07 04:19:40 -05:00
|
|
|
* Thu Mar 07 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.1-1
|
|
|
|
- Update to 0.24.1
|
|
|
|
|
2019-02-02 08:12:34 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-08-21 12:54:42 +02:00
|
|
|
* Tue Aug 21 2018 Sergio Pascual <sergiopr@fedoraproject.org> - 0.23.4-1
|
|
|
|
- New release of pandas 0.23.4
|
|
|
|
|
2018-07-14 01:18:13 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-19 11:12:20 +02:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.23.0-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-06-05 16:11:03 +02:00
|
|
|
* Tue Jun 05 2018 Sergio Pascual <sergiopr@fedoraproject.org> - 0.23.0-1
|
|
|
|
- New release of pandas 0.23.0
|
|
|
|
|
2018-02-09 09:34:59 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.22.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-17 16:17:36 +01:00
|
|
|
* Wed Jan 17 2018 Sergio Pascual <sergiopr@fedoraproject.org> - 0.22.0-1
|
|
|
|
- New release of pandas 0.22.0
|
|
|
|
|
2018-01-16 14:16:37 -08:00
|
|
|
* Tue Jan 16 2018 Troy Dawson <tdawson@redhat.com> - 0.20.3-2
|
|
|
|
- Update conditionals
|
|
|
|
|
2017-09-10 14:28:03 +02:00
|
|
|
* Sun Sep 10 2017 Sergio Pascual <sergiopr@fedoraproject.org> - 0.20.3-1
|
|
|
|
- New upstream version (0.20.3)
|
|
|
|
|
2017-08-03 06:52:32 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.20.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 11:12:26 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.20.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-05-16 01:35:14 +02:00
|
|
|
* Mon May 15 2017 Sergio Pascual <sergiopr@fedoraproject.org> - 0.20.1-1
|
|
|
|
- New upstream version (0.20.1)
|
|
|
|
|
2017-02-11 09:52:39 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-27 13:44:20 +01:00
|
|
|
* Fri Jan 27 2017 Sergio Pascual <sergiopr@fedoraproject.org> - 0.19.2-1
|
|
|
|
- New upstream version (0.19.2)
|
|
|
|
|
2016-12-19 18:20:37 +01:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.19.1-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-11-09 13:21:02 +01:00
|
|
|
* Wed Nov 09 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.19.1-1
|
|
|
|
- New upstream version (0.19.1)
|
|
|
|
|
2016-10-20 11:04:17 +02:00
|
|
|
* Wed Oct 19 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.19.0-1
|
|
|
|
- New upstream version (0.19.0)
|
|
|
|
- Brings pandas-datareader using recommends
|
|
|
|
|
2016-10-15 14:55:04 +01:00
|
|
|
* Sat Oct 15 2016 Peter Robinson <pbrobinson@fedoraproject.org> - 0.18.1-3
|
|
|
|
- rebuilt for matplotlib-2.0.0
|
|
|
|
|
2016-07-19 10:51:30 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18.1-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-07-13 15:05:40 +02:00
|
|
|
* Wed Jul 13 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.18.1-1
|
|
|
|
- New upstream version (0.18.1)
|
|
|
|
- Update pypi url
|
|
|
|
|
2016-04-09 15:58:46 +02:00
|
|
|
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.18.0-3
|
|
|
|
- Fix broken deps
|
|
|
|
|
2016-04-09 14:08:21 +02:00
|
|
|
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.18.0-2
|
|
|
|
- Fix python_provide macros usage (FTBFS for some packages)
|
|
|
|
|
2016-03-30 10:52:30 +02:00
|
|
|
* Wed Mar 30 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.18.0-1
|
|
|
|
- New upstream version (0.18.0)
|
|
|
|
|
2016-02-04 20:24:28 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.17.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-03 13:30:21 +01:00
|
|
|
* Sun Jan 03 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.17.1-1
|
|
|
|
- New upstream version (0.17.1)
|
|
|
|
- Add new dependecy as weak dep (fixes bz #1288919)
|
|
|
|
|
2015-11-10 16:36:44 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-10-28 14:03:27 -06:00
|
|
|
* Wed Oct 28 2015 Orion Poplawski <orion@cora.nwra.com> - 0.17.0-2
|
|
|
|
- Use common build directory, new python macros
|
|
|
|
- Filter provides
|
|
|
|
- Fix provides
|
|
|
|
|
2015-10-12 18:11:51 +02:00
|
|
|
* Mon Oct 12 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.17.0-1
|
|
|
|
- New release of pandas 0.17.0
|
|
|
|
|
2015-06-18 20:11:27 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-15 11:03:36 +02:00
|
|
|
* Mon Jun 15 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.2-1
|
|
|
|
- New release of pandas 0.16.2
|
|
|
|
|
2015-05-18 16:41:11 +02:00
|
|
|
* Mon May 18 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.1-1
|
|
|
|
- New release of pandas 0.16.1
|
|
|
|
|
2015-05-02 17:00:09 +02:00
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.16.0-2
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
2015-03-24 11:23:45 +01:00
|
|
|
* Tue Mar 24 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.0-1
|
|
|
|
- New release of pandas 0.16.0
|
|
|
|
- Use license macro
|
2015-05-18 16:41:11 +02:00
|
|
|
- Don't use py3dir (new python guidelines)
|
2015-03-24 11:23:45 +01:00
|
|
|
|
2015-01-20 13:28:00 +01:00
|
|
|
* Tue Jan 20 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-3
|
|
|
|
- Pandas actually supports dateutil 2
|
|
|
|
|
2015-01-20 00:13:37 +01:00
|
|
|
* Mon Jan 19 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-2
|
2015-01-20 13:28:00 +01:00
|
|
|
- Update dependency on dateutil to dateutil15 (bz #1183368)
|
2015-01-20 00:13:37 +01:00
|
|
|
|
2014-12-17 00:21:52 +01:00
|
|
|
* Wed Dec 17 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-1
|
|
|
|
- New release of pandas 0.15.2
|
|
|
|
|
2014-11-20 23:16:00 +01:00
|
|
|
* Thu Nov 20 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.1-1
|
|
|
|
- New release of pandas 0.15.1
|
|
|
|
|
2014-10-20 11:15:46 +02:00
|
|
|
* Mon Oct 20 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.0-1
|
|
|
|
- New release of pandas 0.15.0
|
|
|
|
|
2014-08-17 21:30:23 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-13 23:43:10 +02:00
|
|
|
* Sun Jul 13 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.14.1-1
|
|
|
|
- New release of pandas 0.14.1
|
|
|
|
|
2014-06-17 14:06:00 +02:00
|
|
|
* Mon Jun 16 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.14.0-1
|
|
|
|
- New release of pandas 0.14.0
|
|
|
|
|
2014-06-07 16:53:57 -05:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-16 16:20:06 +02:00
|
|
|
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.12.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2014-04-04 11:34:44 +05:30
|
|
|
* Tue Jan 28 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.12.0-4
|
|
|
|
- Enable python3 build
|
|
|
|
- Set CFLAGS before build
|
|
|
|
|
2013-12-11 14:42:09 +05:30
|
|
|
* Fri Dec 13 2013 Kushal Das <kushal@fedoraproject.org> 0.12.0-3
|
|
|
|
- Fixed dependency name
|
|
|
|
|
2013-12-06 09:47:43 +01:00
|
|
|
* Fri Dec 06 2013 Pierre-Yves Chibon <pingou@pingoured>fr - 0.12.0-2
|
|
|
|
- Change BR from python-setuptools-devel to python-setuptools
|
|
|
|
See https://fedoraproject.org/wiki/Changes/Remove_Python-setuptools-devel
|
|
|
|
|
2013-09-23 15:58:26 +05:30
|
|
|
* Fri Sep 20 2013 Kushal Das <kushal@fedoraproject.org> 0.12.0-1
|
|
|
|
- New release of pandas 0.12.0
|
|
|
|
|
2013-08-04 03:53:08 -05:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 14:01:38 -06:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-24 15:17:10 +05:30
|
|
|
* Mon Dec 24 2012 Kushal Das <kushal@fedoraproject.org> 0.10.0-1
|
|
|
|
- New release of pandas 0.10.0
|
|
|
|
|
|
|
|
* Thu Nov 08 2012 Kushal Das <kushal@fedoraproject.org> 0.10.0-1
|
|
|
|
- New release of pandas 0.10.0
|
|
|
|
|
2012-11-08 12:19:11 +05:30
|
|
|
* Thu Nov 08 2012 Kushal Das <kushal@fedoraproject.org> 0.9-1
|
|
|
|
- New release of pandas
|
|
|
|
|
2012-08-30 12:23:02 +05:30
|
|
|
* Fri Aug 03 2012 Kushal Das <kushal@fedoraproject.org> 0.8.1-2
|
|
|
|
- Fixes from review request
|
|
|
|
|
|
|
|
* Tue Jul 10 2012 Kushal Das <kushal@fedoraproject.org> 0.8.1-1
|
|
|
|
- Initial release in Fedora
|
|
|
|
|