Package Details: python-pyexcel-ezodf 0.3.4-2

Git Clone URL: https://aur.archlinux.org/python-pyexcel-ezodf.git (read-only, click to copy)
Package Base: python-pyexcel-ezodf
Description: A Python package to create/manipulate OpenDocumentFormat files
Upstream URL: https://github.com/pyexcel/pyexcel-ezodf
Licenses: MIT
Submitter: soker
Maintainer: soker
Last Packager: soker
Votes: 1
Popularity: 0.40
First Submitted: 2024-08-22 17:05 (UTC)
Last Updated: 2024-08-22 17:05 (UTC)

Dependencies (3)

Required by (1)

Sources (0)

Latest Comments

p_schott commented on 2025-05-21 17:34 (UTC) (edited on 2025-05-21 17:37 (UTC) by p_schott)

Thanks a lot for this package. In order to remove a warning with python 3.12+, it seems that a patch could be applied to ./ezodf/tablesutils.py :

--- tableutils.py   2024-11-16 09:36:13.732774074 +0100
+++ tableutils1.py  2025-05-21 18:36:29.576671889 +0200
@@ -28,7 +28,7 @@
     next(generator)
     return generator

-CELL_ADDRESS = re.compile('^([A-Z]+)(\d+)$')
+CELL_ADDRESS = re.compile(r'^([A-Z]+)(\d+)$')

 def address_to_index(address):
     def column_name_to_index(colname):