summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-09-25 10:39:30 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-09-25 10:39:30 +0200
commitb362976504c3346b9f34b69dcad0838d1d381037 (patch)
treee7257a0266944df94a18a51b4df290c202543423 /methods.py
parentdf0a822323a79e1a645f0c6a17d51c7602f23166 (diff)
downloadredot-engine-b362976504c3346b9f34b69dcad0838d1d381037.tar.gz
SCons: Fix Python 3.12 SyntaxError with regex escape sequences
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/methods.py b/methods.py
index a6416ccdd2..7067c21946 100644
--- a/methods.py
+++ b/methods.py
@@ -1016,13 +1016,13 @@ def get_compiler_version(env):
else: # TODO: Implement for MSVC
return None
match = re.search(
- "(?:(?<=version )|(?<=\) )|(?<=^))"
- "(?P<major>\d+)"
- "(?:\.(?P<minor>\d*))?"
- "(?:\.(?P<patch>\d*))?"
- "(?:-(?P<metadata1>[0-9a-zA-Z-]*))?"
- "(?:\+(?P<metadata2>[0-9a-zA-Z-]*))?"
- "(?: (?P<date>[0-9]{8}|[0-9]{6})(?![0-9a-zA-Z]))?",
+ r"(?:(?<=version )|(?<=\) )|(?<=^))"
+ r"(?P<major>\d+)"
+ r"(?:\.(?P<minor>\d*))?"
+ r"(?:\.(?P<patch>\d*))?"
+ r"(?:-(?P<metadata1>[0-9a-zA-Z-]*))?"
+ r"(?:\+(?P<metadata2>[0-9a-zA-Z-]*))?"
+ r"(?: (?P<date>[0-9]{8}|[0-9]{6})(?![0-9a-zA-Z]))?",
version,
)
if match is not None: