commit python-openpyxl for openSUSE:Factory

2020-02-03 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2020-02-03 11:11:57

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new.26092 (New)


Package is "python-openpyxl"

Mon Feb  3 11:11:57 2020 rev:15 rq:768796 version:3.0.3

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2019-11-24 23:46:20.560026385 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-openpyxl.new.26092/python-openpyxl.changes   
2020-02-03 11:12:10.197810107 +0100
@@ -1,0 +2,18 @@
+Thu Jan 30 15:02:50 UTC 2020 - Todd R 
+
+- Update to 3.0.3:
+  + Bugfixes
+* Exception when handling merged cells with hyperlinks
+* Problems when both lxml and defusedxml are installed
+* CFVO with incorrect values cannot be processed
+- Update to 3.0.2:
+  + Bugfixes
+* DeprecationError if both defusedxml and lxml are installed
+* ws._current_row is higher than ws.max_row
+* Border bottom style is not optional when it should be
+* Empty cells in read-only, values-only mode are sometimes returned as 
ReadOnlyCells
+* Cannot add page breaks to existing worksheets if none exist already
+  + Pull Requests
+* Improvements to the documentation
+
+---

Old:

  openpyxl-3.0.1.tar.gz

New:

  openpyxl-3.0.3.tar.gz



Other differences:
--
++ python-openpyxl.spec ++
--- /var/tmp/diff_new_pack.ZdcA9r/_old  2020-02-03 11:12:11.169810599 +0100
+++ /var/tmp/diff_new_pack.ZdcA9r/_new  2020-02-03 11:12:11.173810600 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-openpyxl
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,11 +19,11 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-openpyxl
-Version:3.0.1
+Version:3.0.3
 Release:0
 Summary:A Python library to read/write Excel 2010 xlsx/xlsm files
 License:MIT AND Python-2.0
-URL:https://openpyxl.readthedocs.org
+URL:https://bitbucket.org/openpyxl/openpyxl/
 Source: 
https://files.pythonhosted.org/packages/source/o/openpyxl/openpyxl-%{version}.tar.gz
 BuildRequires:  %{python_module et_xmlfile}
 BuildRequires:  %{python_module jdcal}

++ openpyxl-3.0.1.tar.gz -> openpyxl-3.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-3.0.1/AUTHORS.rst 
new/openpyxl-3.0.3/AUTHORS.rst
--- old/openpyxl-3.0.1/AUTHORS.rst  2019-09-25 16:19:46.0 +0200
+++ new/openpyxl-3.0.3/AUTHORS.rst  2020-01-10 17:42:44.0 +0100
@@ -26,6 +26,7 @@
 * Dmitriy Chernyshov
 * Dominik Geldmacher
 * Don Freeman
+* Eirikur Fannar Torfason
 * Elias Rabel
 * Eric Chlebek
 * Eric Gazoni
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-3.0.1/PKG-INFO new/openpyxl-3.0.3/PKG-INFO
--- old/openpyxl-3.0.1/PKG-INFO 2019-11-14 14:10:34.0 +0100
+++ new/openpyxl-3.0.3/PKG-INFO 2020-01-10 17:44:02.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: openpyxl
-Version: 3.0.1
+Version: 3.0.3
 Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
 Home-page: https://openpyxl.readthedocs.io
 Author: See AUTHORS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-3.0.1/openpyxl/_constants.py 
new/openpyxl-3.0.3/openpyxl/_constants.py
--- old/openpyxl-3.0.1/openpyxl/_constants.py   2019-11-14 14:10:24.0 
+0100
+++ new/openpyxl-3.0.3/openpyxl/_constants.py   2020-01-10 17:42:44.0 
+0100
@@ -1,7 +1,7 @@
 # Copyright (c) 2010-2019 openpyxl
 
 """
-Package medata
+Package metadata
 """
 
 __author__ = "See AUTHORS"
@@ -9,4 +9,4 @@
 __license__ = "MIT"
 __maintainer_email__ = "openpyxl-us...@googlegroups.com"
 __url__ = "https://openpyxl.readthedocs.io";
-__version__ = "3.0.1"
+__version__ = "3.0.3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-3.0.1/openpyxl/cell/cell.py 
new/openpyxl-3.0.3/openpyxl/cell/cell.py
--- old/openpyxl-3.0.1/openpyxl/cell/cell.py2019-11-14 14:10:24.0 
+0100
+++ new/openpyxl-3.0.3/openpyxl/cell/cell.py2020-01-10 17:42:44.0 
+0100
@@ -15,35 +15,15 @@
 import datetime
 import re
 
-from itertools import islice, product
 
 from openpyxl.compat import (
 NUMERIC_TYPES,
 dep

commit python-openpyxl for openSUSE:Factory

2019-11-24 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2019-11-24 23:46:17

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new.26869 (New)


Package is "python-openpyxl"

Sun Nov 24 23:46:17 2019 rev:14 rq:749748 version:3.0.1

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2019-10-10 11:47:15.992305164 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-openpyxl.new.26869/python-openpyxl.changes   
2019-11-24 23:46:20.560026385 +0100
@@ -1,0 +2,12 @@
+Tue Nov 19 20:37:44 UTC 2019 - Todd R 
+
+- Update to 3.0.1:
+  + Bugfixes
+* Cannot read empty charts.
+  + Pull Requests
+* Fix for #1250
+* TableStyleElement is a sequence
+- Update to 3.0.0:
+  * Initial python3-only release
+
+---

Old:

  openpyxl-2.6.4.tar.gz

New:

  openpyxl-3.0.1.tar.gz



Other differences:
--
++ python-openpyxl.spec ++
--- /var/tmp/diff_new_pack.XYaQg3/_old  2019-11-24 23:46:21.820026312 +0100
+++ /var/tmp/diff_new_pack.XYaQg3/_new  2019-11-24 23:46:21.856026309 +0100
@@ -17,13 +17,13 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
 Name:   python-openpyxl
-Version:2.6.4
+Version:3.0.1
 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
+URL:https://openpyxl.readthedocs.org
 Source: 
https://files.pythonhosted.org/packages/source/o/openpyxl/openpyxl-%{version}.tar.gz
 BuildRequires:  %{python_module et_xmlfile}
 BuildRequires:  %{python_module jdcal}

++ openpyxl-2.6.4.tar.gz -> openpyxl-3.0.1.tar.gz ++
 2826 lines of diff (skipped)




commit python-openpyxl for openSUSE:Factory

2019-10-10 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2019-10-10 11:47:14

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new.2352 (New)


Package is "python-openpyxl"

Thu Oct 10 11:47:14 2019 rev:13 rq:733341 version:2.6.4

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2019-06-17 21:35:15.202998368 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-openpyxl.new.2352/python-openpyxl.changes
2019-10-10 11:47:15.992305164 +0200
@@ -1,0 +2,12 @@
+Thu Sep 26 07:57:23 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.6.4:
+  * Cannot save workbooks with comments more than once.
+  * #1237 Fix 3D charts.
+  * #1290 Minimum for holeSize in Doughnut charts too high
+  * #1291 Warning for MergedCells with comments
+  * #1296 Pagebreaks duplicated
+  * #1309 Workbook has no default CellStyle
+  * #1330 Workbooks with comments cannot be saved multiple times
+
+---

Old:

  openpyxl-2.6.2.tar.gz

New:

  openpyxl-2.6.4.tar.gz



Other differences:
--
++ python-openpyxl.spec ++
--- /var/tmp/diff_new_pack.yFWhDl/_old  2019-10-10 11:47:16.588303582 +0200
+++ /var/tmp/diff_new_pack.yFWhDl/_new  2019-10-10 11:47:16.592303572 +0200
@@ -18,14 +18,13 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-openpyxl
-Version:2.6.2
+Version:2.6.4
 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}

++ openpyxl-2.6.2.tar.gz -> openpyxl-2.6.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.2/AUTHORS.rst 
new/openpyxl-2.6.4/AUTHORS.rst
--- old/openpyxl-2.6.2/AUTHORS.rst  2019-03-19 19:15:13.0 +0100
+++ new/openpyxl-2.6.4/AUTHORS.rst  2019-09-20 17:54:53.0 +0200
@@ -44,6 +44,7 @@
 * JarekPS
 * Jean Pierre Huart
 * Jeff Holman
+* John Woltman IV
 * Jonathan Peirce
 * Joseph Tate
 * Josh Haywood
@@ -65,6 +66,7 @@
 * Paul Van Der Linden
 * Philip Roche
 * ramn_se
+* René Neumann
 * Rick Rankin
 * Samuel Loretan
 * Sergey Pikhovkin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.2/PKG-INFO new/openpyxl-2.6.4/PKG-INFO
--- old/openpyxl-2.6.2/PKG-INFO 2019-03-29 15:30:36.0 +0100
+++ new/openpyxl-2.6.4/PKG-INFO 2019-09-25 16:16:12.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: openpyxl
-Version: 2.6.2
+Version: 2.6.4
 Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
 Home-page: https://openpyxl.readthedocs.io
 Author: See AUTHORS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.2/openpyxl/_constants.py 
new/openpyxl-2.6.4/openpyxl/_constants.py
--- old/openpyxl-2.6.2/openpyxl/_constants.py   2019-03-29 15:29:44.0 
+0100
+++ new/openpyxl-2.6.4/openpyxl/_constants.py   2019-09-23 16:31:11.0 
+0200
@@ -9,4 +9,4 @@
 __license__ = "MIT/Expat"
 __maintainer_email__ = "openpyxl-us...@googlegroups.com"
 __url__ = "https://openpyxl.readthedocs.io";
-__version__ = "2.6.2"
+__version__ = "2.6.4"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.2/openpyxl/cell/cell.py 
new/openpyxl-2.6.4/openpyxl/cell/cell.py
--- old/openpyxl-2.6.2/openpyxl/cell/cell.py2019-03-19 20:07:03.0 
+0100
+++ new/openpyxl-2.6.4/openpyxl/cell/cell.py2019-09-20 17:54:53.0 
+0200
@@ -90,6 +90,23 @@
 VALID_TYPES = (TYPE_STRING, TYPE_FORMULA, TYPE_NUMERIC, TYPE_BOOL,
TYPE_NULL, TYPE_INLINE, TYPE_ERROR, TYPE_FORMULA_CACHE_STRING)
 
+
+_TYPES = {int:'n', float:'n', unicode:'s', basestring:'s', bool:'b'}
+
+
+def get_type(t, value):
+if isinstance(value, NUMERIC_TYPES):
+dt = 'n'
+elif isinstance(value, STRING_TYPES):
+dt = 's'
+elif isinstance(value, TIME_TYPES):
+dt = 'd'
+else:
+return
+_TYPES[t] = dt
+return dt
+
+
 class Cell(StyleableObject):
 """Describes cell associated properties.
 
@@ -192,18 +209,24 @@
 
 self.data_type = "n"
 t = type(value)
+try:
+  

commit python-openpyxl for openSUSE:Factory

2019-06-17 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2019-06-17 21:34:37

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new.4811 (New)


Package is "python-openpyxl"

Mon Jun 17 21:34:37 2019 rev:12 rq:710331 version:2.6.2

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2019-03-12 09:54:50.991520895 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-openpyxl.new.4811/python-openpyxl.changes
2019-06-17 21:35:15.202998368 +0200
@@ -1,0 +2,11 @@
+Mon Jun 17 11:00:03 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.6.2:
+  * #1173 Workbook has no _date_formats attribute
+  * #1190 Cannot create charts for worksheets with quotes in the title
+  * #1228 MergedCells not removed when range is unmerged
+  * #1232 Link to pivot table lost from charts
+  * #1233 Chart colours change after saving
+  * #1236 Cannot use ws.cell in read-only mode with Python 2.7
+
+---

Old:

  openpyxl-2.6.1.tar.gz

New:

  openpyxl-2.6.2.tar.gz



Other differences:
--
++ python-openpyxl.spec ++
--- /var/tmp/diff_new_pack.NEy8sD/_old  2019-06-17 21:35:15.682998259 +0200
+++ /var/tmp/diff_new_pack.NEy8sD/_new  2019-06-17 21:35:15.686998258 +0200
@@ -18,12 +18,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-openpyxl
-Version:2.6.1
+Version:2.6.2
 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
+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}
@@ -36,7 +36,6 @@
 # for embedded image support
 Recommends: python-Pillow
 BuildArch:  noarch
-
 %python_subpackages
 
 %description

++ openpyxl-2.6.1.tar.gz -> openpyxl-2.6.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.1/PKG-INFO new/openpyxl-2.6.2/PKG-INFO
--- old/openpyxl-2.6.1/PKG-INFO 2019-03-04 13:10:58.0 +0100
+++ new/openpyxl-2.6.2/PKG-INFO 2019-03-29 15:30:36.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: openpyxl
-Version: 2.6.1
+Version: 2.6.2
 Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
 Home-page: https://openpyxl.readthedocs.io
 Author: See AUTHORS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.1/openpyxl/_constants.py 
new/openpyxl-2.6.2/openpyxl/_constants.py
--- old/openpyxl-2.6.1/openpyxl/_constants.py   2019-03-04 12:58:56.0 
+0100
+++ new/openpyxl-2.6.2/openpyxl/_constants.py   2019-03-29 15:29:44.0 
+0100
@@ -9,4 +9,4 @@
 __license__ = "MIT/Expat"
 __maintainer_email__ = "openpyxl-us...@googlegroups.com"
 __url__ = "https://openpyxl.readthedocs.io";
-__version__ = "2.6.1"
+__version__ = "2.6.2"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.1/openpyxl/cell/_writer.py 
new/openpyxl-2.6.2/openpyxl/cell/_writer.py
--- old/openpyxl-2.6.1/openpyxl/cell/_writer.py 2019-02-27 20:14:09.0 
+0100
+++ new/openpyxl-2.6.2/openpyxl/cell/_writer.py 2019-03-29 15:29:44.0 
+0100
@@ -2,7 +2,7 @@
 # Copyright (c) 2010-2019 openpyxl
 
 from openpyxl.compat import safe_string
-from openpyxl.xml.functions import Element, SubElement
+from openpyxl.xml.functions import Element, SubElement, whitespace, XML_NS, 
REL_NS
 from openpyxl import LXML
 from openpyxl.utils.datetime import to_excel, days_to_time
 from datetime import timedelta
@@ -59,6 +59,8 @@
 inline_string = SubElement(el, 'is')
 text = SubElement(inline_string, 't')
 text.text = value
+whitespace(text)
+
 
 else:
 cell_content = SubElement(el, 'v')
@@ -85,8 +87,14 @@
 
 if cell.data_type == 's':
 with xf.element("is"):
-with xf.element("t"):
-xf.write(value)
+attrs = {}
+if value != value.strip():
+attrs["{%s}space" % XML_NS] = "preserve"
+el = Element("t", attrs) # lxml can't handle xml-ns
+el.text = value
+xf.write(el)
+#with xf.element("t", attrs):
+#xf.write(value)
 else:
 with xf.element("v"):

commit python-openpyxl for openSUSE:Factory

2019-03-12 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2019-03-12 09:54:50

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new.28833 (New)


Package is "python-openpyxl"

Tue Mar 12 09:54:50 2019 rev:11 rq:683879 version:2.6.1

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2019-02-19 12:01:29.165104382 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-openpyxl.new.28833/python-openpyxl.changes   
2019-03-12 09:54:50.991520895 +0100
@@ -1,0 +2,17 @@
+Mon Mar 11 12:34:01 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.6.1:
+  * #1174 ReadOnlyCell.is_date does not work properly
+  * #1175 Cannot read Google Docs spreadsheet with a Pivot Table
+  * #1180 Charts created with openpyxl cannot be styled
+  * #1181 Cannot handle some numpy number types
+  * #1182 Exception when reading unknowable number formats
+  * #1186 Only last formatting rule for a range loaded
+  * #1191 Give MergedCell a value attribute
+  * #1193 Cannot process worksheets with comments
+  * #1197 Cannot process worksheets with both row and page breaks
+  * #1204 Cannot reset dimensions in ReadOnlyWorksheets
+  * #1211 Incorrect descriptor in ParagraphProperties
+  * #1213 Missing hier attribute in PageField raises an exception
+
+---

Old:

  openpyxl-2.6.0.tar.gz

New:

  openpyxl-2.6.1.tar.gz



Other differences:
--
++ python-openpyxl.spec ++
--- /var/tmp/diff_new_pack.G1DPW9/_old  2019-03-12 09:54:51.867520721 +0100
+++ /var/tmp/diff_new_pack.G1DPW9/_new  2019-03-12 09:54:51.867520721 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-openpyxl
-Version:2.6.0
+Version:2.6.1
 Release:0
 Summary:A Python library to read/write Excel 2010 xlsx/xlsm files
 License:MIT AND Python-2.0

++ openpyxl-2.6.0.tar.gz -> openpyxl-2.6.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.0/AUTHORS.rst 
new/openpyxl-2.6.1/AUTHORS.rst
--- old/openpyxl-2.6.0/AUTHORS.rst  2019-01-30 16:22:15.0 +0100
+++ new/openpyxl-2.6.1/AUTHORS.rst  2019-03-04 12:58:56.0 +0100
@@ -19,6 +19,7 @@
 * Brice Gelineau
 * ccoacley
 * Chi Ho Kwok
+* Cory Kramer
 * Day Barr
 * Detlef Lannert
 * Dieter Vandenbussche
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.0/PKG-INFO new/openpyxl-2.6.1/PKG-INFO
--- old/openpyxl-2.6.0/PKG-INFO 2019-02-06 19:23:24.0 +0100
+++ new/openpyxl-2.6.1/PKG-INFO 2019-03-04 13:10:58.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: openpyxl
-Version: 2.6.0
+Version: 2.6.1
 Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
 Home-page: https://openpyxl.readthedocs.io
 Author: See AUTHORS
@@ -77,7 +77,6 @@
 Classifier: License :: OSI Approved :: MIT License
 Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.0/openpyxl/_constants.py 
new/openpyxl-2.6.1/openpyxl/_constants.py
--- old/openpyxl-2.6.0/openpyxl/_constants.py   2019-02-06 19:23:16.0 
+0100
+++ new/openpyxl-2.6.1/openpyxl/_constants.py   2019-03-04 12:58:56.0 
+0100
@@ -9,4 +9,4 @@
 __license__ = "MIT/Expat"
 __maintainer_email__ = "openpyxl-us...@googlegroups.com"
 __url__ = "https://openpyxl.readthedocs.io";
-__version__ = "2.6.0"
+__version__ = "2.6.1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.0/openpyxl/cell/cell.py 
new/openpyxl-2.6.1/openpyxl/cell/cell.py
--- old/openpyxl-2.6.0/openpyxl/cell/cell.py2019-02-06 15:12:51.0 
+0100
+++ new/openpyxl-2.6.1/openpyxl/cell/cell.py2019-03-04 12:58:56.0 
+0100
@@ -359,6 +359,7 @@
 
 coordinate = Cell.coordinate
 _comment = comment
+value = _value
 
 
 def WriteOnlyCell(ws=None, value=None):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.6.0/openpyxl/cell/read_only.py 
new/openpyxl-2.6.1/openpyxl/cell/read_only.py
--- old/openpyxl-2.6.0/openpyxl/cell/read_only.py   2019-02-06 
15:12:51.0 +0100
+++ new/openpyxl-2.6.1/openpyxl/cell/read_only.py   2019-03-04

commit python-openpyxl for openSUSE:Factory

2019-02-19 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2019-02-19 12:00:24

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new.28833 (New)


Package is "python-openpyxl"

Tue Feb 19 12:00:24 2019 rev:10 rq:676952 version:2.6.0

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2019-01-08 12:28:23.024278380 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-openpyxl.new.28833/python-openpyxl.changes   
2019-02-19 12:01:29.165104382 +0100
@@ -1,0 +2,43 @@
+Sat Feb 16 11:40:02 UTC 2019 - Hans-Peter Jansen 
+
+- 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
+* PR301 Add support for nested brackets to the tokeniser
+* PR303 Improvements on handling nested brackets in the
+  tokeniser
+
+- Update to 2.5.13 (brown bag)
+
+---

Old:

  openpyxl-2.5.12.tar.gz

New:

  openpyxl-2.6.0.tar.gz



Other differences:
--
++ python-openpyxl.spec ++
--- /var/tmp/diff_new_pack.NtNncv/_old  2019-02-19 12:01:30.173103859 +0100
+++ /var/tmp/diff_new_pack.NtNncv/_new  2019-02-19 12:01:30.173103859 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-openpyxl
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-openpyxl
-Version:2.5.12
+Version:2.6.0
 Release:0
 Summary:A Python library to read/write Excel 2010 xlsx/xlsm files
 License:MIT AND Python-2.0

++ openpyxl-2.5.12.tar.gz -> openpyxl-2.6.0.tar.gz ++
 9368 lines of diff (skipped)




commit python-openpyxl for openSUSE:Factory

2019-01-08 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2019-01-08 12:26:06

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new.28833 (New)


Package is "python-openpyxl"

Tue Jan  8 12:26:06 2019 rev:9 rq:660791 version:2.5.12

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2018-06-29 22:26:07.874495792 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-openpyxl.new.28833/python-openpyxl.changes   
2019-01-08 12:28:23.024278380 +0100
@@ -1,0 +2,47 @@
+Sat Dec 22 02:55:05 UTC 2018 - Todd R 
+
+- Update to 2.5.12
+  + Bugfixes
+* Overwriting default font in Normal style affects library default
+* Images not added to anchors.
+* Cannot read pivot table formats without dxId
+* Repeated registration of simple filter could lead to memory leaks
+  + Pull Requests
+* Use defusedxml if available
+- Update to 2.5.11
+  + Pull Requests
+* Improved handling of missing rows
+* Add support for defined names to tokeniser
+- Update to 2.5.10
+  + Bugfixes
+* Empty column dimensions should not be saved.
+  + Pull Requests
+* Tokenizer failure for quoted sheet name in second half of range
+* Improved error detection in ranges.
+- Update to 2.5.9
+  + Bugfixes
+* Clean AutoFilter name definitions
+* Attribute missing from Shape object
+* Failure to read all DrawingML means workbook can't be read
+  + Pull Requests
+* Allow newlines in formulae
+* Fix whitespace in front of infix operator in formulae
+- Update to 2.5.8
+  * Cannot control how missing values are displayed in charts.
+  * Cell references can't be used for chart titles
+  * Params in iter_cols and iter_rows methods are slightly wrong.
+- Update to 2.5.7
+  * Sheet title containing % need quoting in references
+  * Cannot set quote prefix
+  * Pandas timestamps raise KeyError
+- Update to 2.5.6
+  * Read-only mode can leave find-handles open when reading dimensions
+  * Set a worksheet directly as active
+  * Internal row counter not adjusted when rows are deleted or inserted
+- Update to 2.5.5
+  + Bugfixes
+* Files with Mac epoch are read incorrectly
+* Cannot copy merged cells
+* Cannot access ws.active_cell2.5.12
+
+---

Old:

  openpyxl-2.5.4.tar.gz

New:

  openpyxl-2.5.12.tar.gz



Other differences:
--
++ python-openpyxl.spec ++
--- /var/tmp/diff_new_pack.a1yj8w/_old  2019-01-08 12:28:23.492277869 +0100
+++ /var/tmp/diff_new_pack.a1yj8w/_new  2019-01-08 12:28:23.496277865 +0100
@@ -12,16 +12,16 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-openpyxl
-Version:2.5.4
+Version:2.5.12
 Release:0
 Summary:A Python library to read/write Excel 2010 xlsx/xlsm files
-License:MIT and Python-2.0
+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
@@ -55,7 +55,6 @@
 mv LICENCE.rst LICENSE.rst
 
 %files %{python_files}
-%defattr(-,root,root,-)
 %doc AUTHORS.rst README.rst
 %license LICENSE.rst
 %{python_sitelib}/*

++ openpyxl-2.5.4.tar.gz -> openpyxl-2.5.12.tar.gz ++
 4314 lines of diff (skipped)




commit python-openpyxl for openSUSE:Factory

2018-06-29 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2018-06-29 22:26:07

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new (New)


Package is "python-openpyxl"

Fri Jun 29 22:26:07 2018 rev:8 rq:616596 version:2.5.4

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2018-01-10 23:38:14.823355564 +0100
+++ /work/SRC/openSUSE:Factory/.python-openpyxl.new/python-openpyxl.changes 
2018-06-29 22:26:07.874495792 +0200
@@ -1,0 +2,90 @@
+Wed Jun 13 17:36:54 UTC 2018 - toddrme2...@gmail.com
+
+- Update to 2.5.3
+  + Bugfixes
+* #983 Warning level too aggressive.
+* #1015 Alignment and protection values not saved for named styles.
+* #1017 Deleting elements from a legend doesn’t work.
+* #1018 Index names repeated for every row in dataframe.
+* #1020 Worksheet protection not being stored.
+* #1023 Exception raised when reading a tooltip.
+- Update to 2.5.2
+  + Bugfixes
+* #949 High memory use when reading text-heavy files.
+* #970 Copying merged cells copies references.
+* #978 Cannot set comment size.
+* #985 Exception when trying to save workbooks with no views.
+* #995 Cannot delete last row or column.
+* #1002 Cannot read Drawings containing embedded images.
+  + Minor changes
+* Support for dataframes with multiple columns and multiple indices.
+- Update to 2.5.1
+  + Bugfixes
+* #934 Headers and footers not included in write-only mode.
+* #960 Deprecation warning raised when using ad-hoc access in read-only 
mode.
+* #964 Not all cells removed when deleting multiple rows.
+* #966 Cannot read 3d bar chart correctly.
+* #967 Problems reading some charts.
+* #968 Worksheets with SHA protection become corrupted after saving.
+* #974 Problem when deleting ragged rows or columns.
+* #976 GroupTransforms and GroupShapeProperties have incorrect descriptors
+* Make sure that headers and footers in chartsheets are included in the 
file
+- Update to 2.5.0
+  + Minor changes
+* Correct definition for Connection Shapes. Related to # 958
+* pip now handles which Python versions can be used.
+* Added CellRange and MultiCellRange types (thanks to Laurent LaPorte for 
the suggestion) as a utility type for things like data validations, conditional 
formatting and merged cells.
+  + Bugfixes
+* #915 TableStyleInfo has no required attributes
+* #925 Cannot read files with 3D drawings
+* #926 Incorrect version check in installer
+* Cell merging uses transposed parameters
+* #928 ExtLst missing keyword for PivotFields
+* #932 Inf causes problems for Excel
+* #952 Cannot load table styles with custom names
+* #812 Explicitly support for multiple cell ranges in conditonal formatting
+* #827 Non-contiguous cell ranges in validators get merged
+* #837 Empty data validators create invalid Excel files
+* #860 Large validation ranges use lots of memory
+* #876 Unicode in chart axes not handled correctly in Python 2
+* #882 ScatterCharts have defective axes
+* #885 Charts with empty numVal elements cannot be read
+* #894 Scaling options from existing files ignored
+* #895 Charts with PivotSource cannot be read
+* #903 Cannot read gradient fills
+* #904 Quotes in number formats could be treated as datetimes
+* #848 Reading workbooks with Pie Charts raises an exception
+* #857 Pivot Tables without Worksheet Sources raise an exception
+* #833 Cannot access chartsheets by title
+* #834 Preserve workbook views
+* #841 Incorrect classification of a datetime
+* #779 Fails to recognise Chinese date format`
+* #828 Include hidden cells in charts`
+  + Major Changes
+* You can now insert and delete rows and columns in worksheets
+* worksheet.cell() no longer accepts a coordinate parameter. The syntax is 
now ws.cell(row, column, value=None)
+* Read support for charts
+* Read/write support for pivot tables
+  + Deprecations
+* ws.merged_cell_ranges has been deprecated because MultiCellRange 
provides sufficient functionality
+* Dropped the anchor method from images and additional constructor 
arguments
+  + Compatibility
+* Dropped support for Python 2.6 and 3.3. openpyxl will not run with 
Python 2.6
+  + Pull requests
+* 163 Improved GradientFill
+- Update to 2.4.11
+  + Bugfixes
+* #957 https://bitbucket.org/openpyxl/openpyxl/issues/957 Relationship 
type for tables is borked
+- Update to 2.4.10
+  + Bugfixes
+* #912 https://bitbucket.org/openpyxl/openpyxl/issues/912 Copying objects 
uses shallow copy
+* #921 https://bitbucket.org/openpyxl/openpyxl/issues/921 API 
documentation not generated auto

commit python-openpyxl for openSUSE:Factory

2018-01-10 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2018-01-10 23:38:14

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new (New)


Package is "python-openpyxl"

Wed Jan 10 23:38:14 2018 rev:7 rq:563264 version:2.4.9

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2017-08-28 15:15:00.918851304 +0200
+++ /work/SRC/openSUSE:Factory/.python-openpyxl.new/python-openpyxl.changes 
2018-01-10 23:38:14.823355564 +0100
@@ -1,0 +2,22 @@
+Wed Jan 10 10:13:52 UTC 2018 - kbabi...@suse.com
+
+- update to 2.4.9:
+  + Bugfixes
+* #809 Incomplete documentation of copy_worksheet method
+* #811 Scoped definedNames not removed when worksheet is deleted
+* #824 Raise an exception if a chart is used in multiple sheets
+* #842 Non-ASCII table column headings cause an exception in Python 2
+* #846 Conditional formats not supported in write-only mode
+* #849 Conditional formats with no sqref cause an exception
+* #859 Headers that start with a number conflict with font size
+* #902 TableStyleElements don’t always have a condtional format
+* #908 Read-only mode sometimes returns too many cells
+  + Pull requests
+* #179 Cells kept in a set
+* #180 Support for Workbook protection
+* #182 Read support for page breaks
+* #183 Improve documentation of copy_worksheet method
+* #198 Fix for #908
+- updated summary
+
+---
@@ -61 +83 @@
-* Potential XXE vulerability
+* Potential XXE vulerability (CVE-2017-5992 boo#1025592)

Old:

  openpyxl-2.4.8.tar.gz

New:

  openpyxl-2.4.9.tar.gz



Other differences:
--
++ python-openpyxl.spec ++
--- /var/tmp/diff_new_pack.8CEmUm/_old  2018-01-10 23:38:15.347330982 +0100
+++ /var/tmp/diff_new_pack.8CEmUm/_new  2018-01-10 23:38:15.351330795 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-openpyxl
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -18,9 +18,9 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-openpyxl
-Version:2.4.8
+Version:2.4.9
 Release:0
-Summary:A Python library to read/write Excel 2007 xlsx/xlsm files
+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

++ openpyxl-2.4.8.tar.gz -> openpyxl-2.4.9.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.4.8/AUTHORS.rst 
new/openpyxl-2.4.9/AUTHORS.rst
--- old/openpyxl-2.4.8/AUTHORS.rst  2017-03-16 19:05:43.0 +0100
+++ new/openpyxl-2.4.9/AUTHORS.rst  2017-10-19 14:24:20.0 +0200
@@ -61,6 +61,7 @@
 * James Smagala
 * Wolfgane Scherer
 * Joseph Tate
+* Gar Thompson
 * Dieter Vandenbussche
 * Paul Van Der Linden
 * Gerald Van Huffelen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.4.8/PKG-INFO new/openpyxl-2.4.9/PKG-INFO
--- old/openpyxl-2.4.8/PKG-INFO 2017-05-30 19:33:09.0 +0200
+++ new/openpyxl-2.4.9/PKG-INFO 2017-10-19 14:24:46.0 +0200
@@ -1,11 +1,12 @@
 Metadata-Version: 1.1
 Name: openpyxl
-Version: 2.4.8
+Version: 2.4.9
 Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
 Home-page: https://openpyxl.readthedocs.io
 Author: See AUTHORS
 Author-email: charlie.cl...@clark-consulting.eu
 License: MIT/Expat
+Description-Content-Type: UNKNOWN
 Description: openpyxl
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.4.8/openpyxl/.constants.json 
new/openpyxl-2.4.9/openpyxl/.constants.json
--- old/openpyxl-2.4.8/openpyxl/.constants.json 2017-05-30 19:32:53.0 
+0200
+++ new/openpyxl-2.4.9/openpyxl/.constants.json 2017-10-19 14:24:20.0 
+0200
@@ -4,5 +4,5 @@
 "__license__": "MIT/Expat",
 "__maintainer_email__": "openpyxl-us...@googlegroups.com",
 "__url__": "https://openpyxl.readthedocs.io";,
-"__version__": "2.4.8"
+"__version__": "2.4.9"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.4.8/openpyxl/cell/read_only.py 
new/openpyxl-2.4.9/openpyxl/cell/read_only.py
--- old/openpyxl-2.4.8/open

commit python-openpyxl for openSUSE:Factory

2017-08-28 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2017-08-28 15:13:26

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new (New)


Package is "python-openpyxl"

Mon Aug 28 15:13:26 2017 rev:6 rq:518482 version:2.4.8

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2017-05-17 17:17:53.381005105 +0200
+++ /work/SRC/openSUSE:Factory/.python-openpyxl.new/python-openpyxl.changes 
2017-08-28 15:15:00.918851304 +0200
@@ -1,0 +2,12 @@
+Thu Aug 24 06:01:22 UTC 2017 - tbecht...@suse.com
+
+- update to 2.4.8:
+  * AutoFilter.sortState being assignd to the ws.sortState
+  * #766 Sheetnames with apostrophes need additional escaping
+  * #729 Cannot open files created by Microsoft Dynamics
+  * #819 Negative percents not case correctly
+  * #821 Runtime imports can cause deadlock
+  * #855 Print area containing only columns leads to corrupt file
+- Fix Requires and BuildRequires
+
+---

Old:

  openpyxl-2.4.7.tar.gz

New:

  openpyxl-2.4.8.tar.gz



Other differences:
--
++ python-openpyxl.spec ++
--- /var/tmp/diff_new_pack.cHEEiF/_old  2017-08-28 15:15:01.870717562 +0200
+++ /var/tmp/diff_new_pack.cHEEiF/_new  2017-08-28 15:15:01.878716438 +0200
@@ -18,21 +18,21 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-openpyxl
-Version:2.4.7
+Version:2.4.8
 Release:0
 Summary:A Python library to read/write Excel 2007 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:  fdupes
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module devel}
-BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module et_xmlfile}
 BuildRequires:  %{python_module jdcal}
-BuildRequires:  %{python_module xml}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
+Requires:   python-et_xmlfile
 Requires:   python-jdcal
-Requires:   python-xml
 # for embedded image support
 Recommends: python-Pillow
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ openpyxl-2.4.7.tar.gz -> openpyxl-2.4.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.4.7/PKG-INFO new/openpyxl-2.4.8/PKG-INFO
--- old/openpyxl-2.4.7/PKG-INFO 2017-04-24 08:57:08.0 +0200
+++ new/openpyxl-2.4.8/PKG-INFO 2017-05-30 19:33:09.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: openpyxl
-Version: 2.4.7
+Version: 2.4.8
 Summary: A Python library to read/write Excel 2010 xlsx/xlsm files
 Home-page: https://openpyxl.readthedocs.io
 Author: See AUTHORS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.4.7/openpyxl/.constants.json 
new/openpyxl-2.4.8/openpyxl/.constants.json
--- old/openpyxl-2.4.7/openpyxl/.constants.json 2017-04-24 08:56:43.0 
+0200
+++ new/openpyxl-2.4.8/openpyxl/.constants.json 2017-05-30 19:32:53.0 
+0200
@@ -4,5 +4,5 @@
 "__license__": "MIT/Expat",
 "__maintainer_email__": "openpyxl-us...@googlegroups.com",
 "__url__": "https://openpyxl.readthedocs.io";,
-"__version__": "2.4.7"
+"__version__": "2.4.8"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.4.7/openpyxl/cell/cell.py 
new/openpyxl-2.4.8/openpyxl/cell/cell.py
--- old/openpyxl-2.4.7/openpyxl/cell/cell.py2017-04-24 08:52:42.0 
+0200
+++ new/openpyxl-2.4.8/openpyxl/cell/cell.py2017-05-30 19:20:53.0 
+0200
@@ -53,7 +53,7 @@
 STRING_TYPES = (basestring, unicode, bytes)
 KNOWN_TYPES = NUMERIC_TYPES + TIME_TYPES + STRING_TYPES + (bool, type(None))
 
-PERCENT_REGEX = re.compile(r'^\-?(?P[0-9]*\.?[0-9]*\s?)\%$')
+PERCENT_REGEX = re.compile(r'^(?P\-?[0-9]*\.?[0-9]*\s?)\%$')
 TIME_REGEX = re.compile(r"""
 ^(?: # HH:MM and HH:MM:SS
 (?P[0-1]{0,1}[0-9]{2}):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openpyxl-2.4.7/openpyxl/chart/legend.py 
new/openpyxl-2.4.8/openpyxl/chart/legend.py
--- old/openpyxl-2.4.7/openpyxl/chart/legend.py 2017-03-15 14:21:04.0 
+0100
+++ new/openpyxl-2.4.8/openpyxl/chart/legend.py 2017-05-30 19:14:29.0 
+0200
@@ -3,6 +3,7 @@
 Typed,
 Integer,
 Alias,
+Sequence,
 )
 from openpyxl.descriptors.excel

commit python-openpyxl for openSUSE:Factory

2017-05-17 Thread root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2017-05-17 17:17:51

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new (New)


Package is "python-openpyxl"

Wed May 17 17:17:51 2017 rev:5 rq:491155 version:2.4.7

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2016-02-03 10:19:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-openpyxl.new/python-openpyxl.changes 
2017-05-17 17:17:53.381005105 +0200
@@ -1,0 +2,157 @@
+Tue Apr 25 21:49:58 UTC 2017 - toddrme2...@gmail.com
+
+- Fix URL.
+
+---
+Tue Apr 25 18:50:02 UTC 2017 - toddrme2...@gmail.com
+
+- Update to version 2.4.7
+* Sample files being included by mistake in sdist`
+- Update to version 2.4.6
+  + Bugfixes
+* Cannot apply formatting to plot area`
+* Exception when element attributes are Python keywords`
+* Exception raised when saving files with styled columns`
+* Number formats for data labels are incorrect`
+* Worksheet titles not quoted in defined names`
+* Font underlines not read correctly`
+- Update to version 2.4.5
+  + Bugfixes
+* Adding images keeps file handles open
+* Exception for column-only ranges
+* Cannot copy worksheets with non-ascii titles on Python 2
+  + Pull requests
+* Support for non-standard names for Workbook part.
+* Documentation correction
+- Update to version 2.4.4
+  + Bugfixes
+* Add close method to workbooks
+* openpyxl can create files with invalid style indices
+* Allow images in write-only mode
+* Rounded corners for charts
+* Use repr when handling non-convertible objects
+* Hashing function is incorrect
+* Named styles share underlying array
+  + Minor Changes
+* Add roundtrip support for worksheet tables.
+  + Pull requests
+* Don't init mimetypes more than once.
+- Update to version 2.4.2
+  + Bug fixes
+* DeprecationWarning is incorrect
+* Exception raised if userName is missing
+* Always provide a date1904 attribute
+* Hashes should be stored as Base64
+* Print titles broken on sheetnames with spaces
+* Workbook breaks when active sheet is removed
+* Incorrect descriptor for Filter values
+* Potential XXE vulerability
+* Cannot create files with page breaks and charts
+* Problems with worksheets with commas in their titles
+  + Minor Changes
+* Add unicode support for sheet name incrementation.
+- Update to version 2.4.1
+  + Bug fixes
+* Make checking for duplicate sheet titles case insensitive
+* Trouble handling LibreOffice files with named styles
+* Directly assigned new named styles always refer to "Normal"
+* Cannot parse print titles with multiple sheet names
+* Cannot work with macro files created by LibreOffice
+* Prevent duplicate differential styles
+* Allow sheet titles longer than 31 characters
+* Cannot unset hyperlinks
+* Exception raised when format objects use cell references
+* Copy height and width when copying comments
+* Incorrect content type for VBA macros
+* IndexError raised in read-only mode when accessing individual cells
+* Files with external links become corrupted
+* Cannot read files containing macro sheets
+* Details from named styles not preserved when reading files
+* Remove broken Print Title and Print Area definitions
+  + Minor changes
+* Add support for Python 3.6
+* Correct documentation for headers and footers
+  + Deprecations
+* Worksheet methods `get_named_range()` and `get_sqaured_range()`
+  + Bug fixes
+- Update to version 2.4.0
+  + Bug fixes
+* Exception raised when epoch is 1904
+* Cannot handle unicode in headers and footers in Python 2
+* Cannot handle unicode sheetnames in Python 2
+* Chart styles, and axis units should not be 0
+* Strings in external workbooks not unicode
+  + Major changes
+* Add support for builtin styles and include one for Pandas
+  + Minor changes
+* Add a `keep_links` option to `load_workbook`. External links contain 
cached
+  copies of the external workbooks. If these are big it can be 
advantageous to
+  be able to disable them.
+* Provide an example for using cell ranges in DataValidation.
+* PR 138 - add copy support to comments.
+- Update to 2.4.0-b1
+  + Minor changes
+* Add an the alias `hide_drop_down` to DataValidation for `showDropDown` 
because that is how Excel works.
+  + Bug fixes
+* Exception raises when inspecting EmptyCells in read-only mode
+* Functions for handling OOXML "escaped" ST_XStrings
+* Row Dimensions not supported in write-only mode
+* Problems when remov

commit python-openpyxl for openSUSE:Factory

2016-02-03 Thread h_root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2016-02-03 10:19:40

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new (New)


Package is "python-openpyxl"

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2015-06-03 08:35:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-openpyxl.new/python-openpyxl.changes 
2016-02-03 10:19:41.0 +0100
@@ -1,0 +2,103 @@
+Mon Feb  1 11:35:21 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 2.3.3:
+  * Bug fixes
++ #540 Cannot read merged cells in read-only mode
++ #565 Empty styled text blocks cannot be parsed
++ #569 Issue warning rather than raise Exception raised for
+  unparsable definedNames
++ #575 Cannot open workbooks with embdedded OLE files
++ #584 Exception when saving borders with attribues
+  * Minor changes
++ PR 103 Documentation about chart scaling and axis limits
++ Raise an exception when trying to copy cells from other
+  workbooks.
+- changes from version 2.3.2:
+  * Bug fixes
++ #554 Cannot add comments to a worksheet when preserving VBA
++ #561 Exception when reading phonetic text
++ #562 DARKBLUE is the same as RED
++ #563 Minimum for row and column indexes not enforced
+  * Minor changes
++ PR 97 One VML file per worksheet.
++ PR 96 Correct descriptor for CharacterProperties.rtl
++ #498 Metadata is not essential to use the package.
+- update to version 2.3.1:
+  * #534 Exception when using columns property in read-only mode.
+  * #536 Incorrectly handle comments from Google Docs files.
+  * #539 Flexible value types for conditional formatting.
+  * #542 Missing content types for images.
+  * #543 Make sure images fit containers on all OSes.
+  * #544 Gracefully handle missing cell styles.
+  * #546 ExternalLink duplicated when editing a file with macros.
+  * #548 Exception with non-ASCII worksheet titles
+  * #551 Combine multiple LineCharts
+  * PR 88 Fix page margins in parser.
+- update to version 2.3.0:
+  * Support the creation of chartsheets
+  * #532 Problems when cells have no style in read-only mode.
+  * PR 79 Make PlotArea editable in charts
+  * Use graphicalProperties as the alias for spPr
+  * #488 Support hashValue attribute for sheetProtection
+  * #493 Warn that unsupported extensions will be dropped
+  * #494 Cells with exponentials causes a ValueError
+  * #497 Scatter charts are broken
+  * #499 Inconsistent conversion of localised datetimes
+  * #500 Adding images leads to unreadable files
+  * #509 Improve handling of sheet names
+  * #515 Non-ascii titles have bad repr
+  * #516 Ignore unassigned worksheets
+  * Worksheets are now iterable by row.
+  * Assign individual cell styles only if they are explicitly set.
+  * Shift to using (row, column) indexing for cells. Cells will at some point 
lose coordinates.
+  * New implementation of conditional formatting. Databars now partially 
preserved.
+  * et_xmlfile is now a standalone library.
+  * Complete rewrite of chart package
+  * Include a tokenizer for fomulae to be able to adjust cell references in 
them. PR 63
+  * Read-only and write-only worksheets renamed.
+  * Write-only workbooks support charts and images.
+  * PR76 Prevent comment images from conflicting with VBA
+  * #81 Support stacked bar charts
+  * #88 Charts break hyperlinks
+  * #97 Pie and combination charts
+  * #99 Quote worksheet names in chart references
+  * #150 Support additional chart options
+  * #172 Support surface charts
+  * #381 Preserve named styles
+  * #470 Adding more than 10 worksheets with the same name leads to
+duplicates sheet names and an invalid file
+- changes from version 2.2.6
+  * #502 Unexpected keyword "mergeCell"
+  * #503 tostring missing in dump_worksheet
+  * #506 Non-ASCII formulae cannot be parsed
+  * #508 Cannot save files with coloured tabs
+  * Regex for ignoring named ranges is wrong (character class instead
+of prefix)
+- changes from version 2.2.5:
+  * #463 Unexpected keyword "mergeCell"
+  * #484 Unusual dimensions breaks read-only mode
+  * #485 Move return out of loop
+- update to version 2.2.4:
+  * #464 Cannot use images when preserving macros
+  * #465 ws.cell() returns an empty cell on read-only workbooks
+  * #467 Cannot edit a file with ActiveX components
+  * #471 Sheet properties elements must be in order
+  * #475 Do not redefine class __slots__ in subclasses
+  * #477 Write-only support for SheetProtection
+  * #478 Write-only support for DataValidation
+  * Improved regex when checking for datetime formats
+- update to version 2.2.3:
+  * Enable 64bit extensions for all versions of Python.
+  * Update docs.
+  * Do not preserve relation to 

commit python-openpyxl for openSUSE:Factory

2015-06-02 Thread h_root
Hello community,

here is the log from the commit of package python-openpyxl for openSUSE:Factory 
checked in at 2015-06-03 08:35:17

Comparing /work/SRC/openSUSE:Factory/python-openpyxl (Old)
 and  /work/SRC/openSUSE:Factory/.python-openpyxl.new (New)


Package is "python-openpyxl"

Changes:

--- /work/SRC/openSUSE:Factory/python-openpyxl/python-openpyxl.changes  
2014-07-18 06:41:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-openpyxl.new/python-openpyxl.changes 
2015-06-03 08:35:18.0 +0200
@@ -1,0 +2,216 @@
+Fri May  8 08:42:52 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 2.2.2:
+  * #447 Uppercase datetime number formats not recognised.
+  * #453 Borders broken in shared_styles.
+- additional changes from version 2.2.1:
+  * PR54 Improved precision on times near midnight.
+  * PR55 Preserve macro buttons
+  * #429 Workbook fails to load because header and footers cannot
+be parsed.
+  * #433 File-like object with encoding=None
+  * #434 SyntaxError when writing page breaks.
+  * #436 Read-only mode duplicates empty rows.
+  * #437 Cell.offset raises an exception
+  * #438 Cells with pivotButton and quotePrefix styles cannot be
+read
+  * #440 Error when customised versions of builtin formats
+  * #442 Exception raised when a fill element contains no children
+  * #444 Styles cannot be copied
+- additional changes from version 2.2.0:
+  * #415 Improved exception when passing in invalid in memory files.
+- additional changes from version 2.2.0-b1:
+  * Cell styles deprecated, use formatting objects (fonts, fills,
+borders, etc.) directly instead
+  * Charts will no longer try and calculate axes by default
+  * Support for template file types - PR21
+  * Moved ancillary functions and classes into utils package -
+single place of reference
+  * PR 34 Fully support page setup
+  * Removed SAX-based XML Generator. Special thanks to Elias Rabel
+for implementing xmlfile for xml.etree
+  * Preserve sheet view definitions in existing files (frozen
+panes, zoom, etc.)
+  * #103 Set the zoom of a sheet
+  * #199 Hide gridlines
+  * #215 Preserve sheet view setings
+  * #262 Set the zoom of a sheet
+  * #392 Worksheet header not read
+  * #387 Cannot read files without styles.xml
+  * #410 Exception when preserving whitespace in strings
+  * #417 Cannot create print titles
+  * #420 Rename confusing constants
+  * #422 Preserve color index in a workbook if it differs from the
+standard
+  * Use a 2-way cache for column index lookups
+  * Clean up tests in cells
+  * PR 40 Support frozen panes and autofilter in write-only mode
+  * Use ws.calculate_dimension(force=True) in read-only mode for
+unsized worksheets
+- additional changes from version 2.1.5:
+  * #403 Cannot add comments in write-only mode
+  * #401 Creating cells in an empty row raises an exception
+  * #408 from_excel adjustment for Julian dates 1 < x < 60
+  * #409 refersTo is an optional attribute
+  * Allow cells to be appended to standard worksheets for code
+compatibility with write-only mode.
+- additional changes from version 2.1.4:
+  * #393 IterableWorksheet skips empty cells in rows
+  * #394 Date format is applied to all columns (while only first
+column contains dates)
+  * #395 temporary files not cleaned properly
+  * #396 Cannot write “=” in Excel file
+  * #398 Cannot write empty rows in write-only mode with LXML
+installed
+  * Add relation namespace to root element for compatibility with
+iWork
+  * Serialize comments relation in LXML-backend
+- additional changes from version 2.1.3:
+  * PR 31 Correct tutorial
+  * PR 32 See #380
+  * PR 37 Bind worksheet to ColumnDimension objects
+  * #379 ws.append() doesn’t set RowDimension Correctly
+  * #380 empty cells formatted as datetimes raise exceptions
+- additional changes from version 2.1.2:
+  * PR 30 Fix regex for positive exponentials
+  * PR 28 Fix for #328
+  * #120, #168 defined names with formulae raise exceptions, #292
+  * #328 ValueError when reading cells with hyperlinks
+  * #369 IndexError when reading definedNames
+  * #372 number_format not consistently applied from styles
+- additional changes from version 2.1.1:
+  * PR 20 Support different workbook code names
+  * Allow auto_axis keyword for ScatterCharts
+  * #332 Fills lost in ConditionalFormatting
+  * #360 Support value=”none” in attributes
+  * #363 Support undocumented value for textRotation
+  * #364 Preserve integers in read-only mode
+  * #366 Complete read support for DataValidation
+  * #367 Iterate over unsized worksheets
+- additional changes from version 2.1.0:
+  * “read_only” and “write_only” new flags for workbooks
+  * Support for reading and writing worksheet protection
+  * Support for reading hidden rows
+  * Cells now manage their styles directly
+  * ColumnDimensi