Accepting request 1179040 from devel:languages:python:numeric

- update to 3.1.3:
  * #1401 Column name caches are slow and use a lot of memory
  * #1457 Improved handling of duplicate named styles
  * #1842 Rich-text can be saved if lxml is not installed
  * #1954 Documentation for sheet views is incorrect
  * #1973 Timedeltas not read properly in read-only mode
  * #1987 List of formulae names contains mistakes
  * #1967 Filters does not handle non-numerical filters
  * #2054 Type checking increases exponentially
  * #2057 Loading pivot tables can be unnecessarily slow
  * #2102 Improve performance when reading files with lots of
    custom properties
  * #2106 Setting Trendline.name attribute raises exception when
    saving
  * #2120 Timezone and Zombie formatting cannot be combined.
  * #2107 Column name generation is inefficient and slow
  * #2122 File handlers not always released in read-only mode
  * #2149 Workbook files not properly closed on Python ≥ 3.11.8
    and Windows
  * #2161 Pivot cache definitions using tupleCache had
    serialisation issues

OBS-URL: https://build.opensuse.org/request/show/1179040
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-openpyxl?expand=0&rev=20
This commit is contained in:
Ana Guerrero 2024-06-07 13:03:37 +00:00 committed by Git OBS Bridge
commit 2575981e57
4 changed files with 35 additions and 10 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a6f5977418eff3b2d5500d54d9db50c8277a368436f4e4f8ddb1be3422870184
size 185977

3
openpyxl-3.1.3.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8dd482e5350125b2388070bb2477927be2e8ebc27df61178709bc8c8751da2f9
size 188705

View File

@ -1,3 +1,28 @@
-------------------------------------------------------------------
Thu Jun 6 15:11:30 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.1.3:
* #1401 Column name caches are slow and use a lot of memory
* #1457 Improved handling of duplicate named styles
* #1842 Rich-text can be saved if lxml is not installed
* #1954 Documentation for sheet views is incorrect
* #1973 Timedeltas not read properly in read-only mode
* #1987 List of formulae names contains mistakes
* #1967 Filters does not handle non-numerical filters
* #2054 Type checking increases exponentially
* #2057 Loading pivot tables can be unnecessarily slow
* #2102 Improve performance when reading files with lots of
custom properties
* #2106 Setting Trendline.name attribute raises exception when
saving
* #2120 Timezone and Zombie formatting cannot be combined.
* #2107 Column name generation is inefficient and slow
* #2122 File handlers not always released in read-only mode
* #2149 Workbook files not properly closed on Python ≥ 3.11.8
and Windows
* #2161 Pivot cache definitions using tupleCache had
serialisation issues
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 9 22:13:39 UTC 2024 - Dirk Müller <dmueller@suse.com> Tue Jan 9 22:13:39 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@ -19,14 +19,16 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1 %define skip_python2 1
Name: python-openpyxl Name: python-openpyxl
Version: 3.1.2 Version: 3.1.3
Release: 0 Release: 0
Summary: A Python library to read/write Excel 2010 xlsx/xlsm files Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
License: MIT AND Python-2.0 License: MIT AND Python-2.0
URL: https://foss.heptapod.net/openpyxl/openpyxl URL: https://foss.heptapod.net/openpyxl/openpyxl
Source: https://files.pythonhosted.org/packages/source/o/openpyxl/openpyxl-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/o/openpyxl/openpyxl-%{version}.tar.gz
BuildRequires: %{python_module et_xmlfile} BuildRequires: %{python_module et_xmlfile}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
Requires: python-et_xmlfile Requires: python-et_xmlfile
@ -43,19 +45,17 @@ It is ported from the PHPExcel project
%setup -q -n openpyxl-%{version} %setup -q -n openpyxl-%{version}
%build %build
%python_build %pyproject_wheel
%install %install
%python_install %pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
mv LICENCE.rst LICENSE.rst mv LICENCE.rst LICENSE.rst
%files %{python_files} %files %{python_files}
%doc AUTHORS.rst README.rst %doc AUTHORS.rst README.rst
%license LICENSE.rst %license LICENSE.rst
%dir %{python_sitelib}/openpyxl %{python_sitelib}/openpyxl
%{python_sitelib}/openpyxl/* %{python_sitelib}/openpyxl-%{version}.dist-info
%dir %{python_sitelib}/openpyxl-%{version}-py*.egg-info
%{python_sitelib}/openpyxl-%{version}-py*.egg-info/*
%changelog %changelog