Package Details: python-pyexcel-ezodf 0.3.4-3

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: 2
Popularity: 0.71
First Submitted: 2024-08-22 17:05 (UTC)
Last Updated: 2026-05-06 10:00 (UTC)

Dependencies (3)

Required by (1)

Sources (1)

Latest Comments

soker commented on 2026-05-06 10:02 (UTC)

@p_schott Sorry, I didn't see your message, patch applied

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):