3 Commits

Author SHA1 Message Date
David Fries
6e3e3e6742 Use raw strings for regular expressions with invalid escape sequences
If "T(\d*)" was "T(\n*)" it would search for newlines.  There isn't
any such \d escape character.

It should be "T(\\d*)" or r"T(\d*)" going with the latter, to be
easier to read and be consistent with other Cura usage.

Start python with -Wd or for python 3.12 will raise a SyntaxWarning.
2024-08-31 12:11:59 -05:00
Erwan MATHIEU
c02c3500c6 Fix changelog extraction for minor releases 2024-06-05 14:15:40 +02:00
Erwan MATHIEU
b71662f4dd Add scripts for process automation 2024-06-05 09:19:10 +02:00