Patch | Description | Author | Forwarded | Bugs | Origin | Last update |
---|---|---|---|---|---|---|
0001-Use-find_spec-instead-of-deprecated-find_module-Clos.patch | Use find_spec instead of deprecated find_module (Closes: #1061860) It seems that find_module was deprecated in python 3.4, and removed in 3.12. |
Daniel Kahn Gillmor <dkg@fifthhorseman.net> | no | 2024-04-04 | ||
0002-Use-raw-strings-for-regex-descriptions.patch | Use raw strings for regex descriptions Without this, python 3.12 will warn like so: sources/arxiv.py:14: SyntaxWarning: invalid escape sequence '\.' scan_regex = 'arXiv:([0-9]{4}\.[0-9]{4,5})(?:v[0-9]+)?' sources/cryptoeprint.py:11: SyntaxWarning: invalid escape sequence '\d' url_regex = 'https?://eprint.iacr.org/(\d{4,}/\d{3,})' sources/doi.py:10: SyntaxWarning: invalid escape sequence '\.' id_regex = '(10\.\d{4,}[\w\d\:\.\-\/]+)' sources/doi.py:14: SyntaxWarning: invalid escape sequence '\.' url_regex = 'https?://dx.doi.org/(10\.\d{4,}[\w\d\:\.\-\/]+)' sources/doi.py:21: SyntaxWarning: invalid escape sequence '\s' |
Daniel Kahn Gillmor <dkg@fifthhorseman.net> | no | 2024-04-05 |