python-openpyxl/python-openpyxl.spec
Tomáš Chvátal 12842460bb Accepting request 676662 from home:frispete:python
- Update to 2.6.0 (2019-02-06)
  + Bugfixes
    * #1162 Exception on tables with names containing spaces.
    * #1170 Cannot save files with existing images.
- Update to 2.6.-b1 (2019-01-08)
  + Bugfixes
    * #1141 Cannot use read-only mode with stream
    * #1143 Hyperlinks always set on A1
    * #1151 Internal row counter not initialised when reading files
    * #1152 Exception raised on out of bounds date
- Update to 2.6-a1 (2018-11-21)
  + Major changes
    * Implement robust for merged cells so that these can be
      formatted the way Excel does without confusion. Thanks to
      Magnus Schieder.
  + Minor changes
    * Add support for worksheet scenarios
    * Add read support for chartsheets
    * Add method for moving ranges of cells on a worksheet
    * Last version to support Python 2.7
  + Deprecations
    * Type inference and coercion for cell values
- Update to 2.5.15 (unreleased)
- Update to 2.5.14 (2019-01-23)
  + Bugfixes
    * #1150 Correct typo in LineProperties
    * #1142 Exception raised for unsupported image files
    * #1159 Exception raised when cannot find source for non-local
      cache object
  + Pull Requests

OBS-URL: https://build.opensuse.org/request/show/676662
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-openpyxl?expand=0&rev=5
2019-02-18 08:46:40 +00:00

63 lines
1.9 KiB
RPMSpec

#
# spec file for package python-openpyxl
#
# Copyright (c) 2019 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-openpyxl
Version: 2.6.0
Release: 0
Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
License: MIT AND Python-2.0
Group: Development/Languages/Python
Url: http://openpyxl.readthedocs.org
Source: https://files.pythonhosted.org/packages/source/o/openpyxl/openpyxl-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module et_xmlfile}
BuildRequires: %{python_module jdcal}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-et_xmlfile
Requires: python-jdcal
# for embedded image support
Recommends: python-Pillow
BuildArch: noarch
%python_subpackages
%description
openpyxl is a pure python reader and writer of Excel OpenXML files.
It is ported from the PHPExcel project
%prep
%setup -q -n openpyxl-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
mv LICENCE.rst LICENSE.rst
%files %{python_files}
%doc AUTHORS.rst README.rst
%license LICENSE.rst
%{python_sitelib}/*
%changelog