Python module re missing in windows zip

Version

Glaxnimate: 0.5.4+win-dc26f367 System: Windows 10 Version 22H2
and
0.5.5 development / Windows

Description

In both zip packages the re python module is missing. Propably because the re module is now in it's own directory in the python lib directory. (this is in recent python versions. starting from 3.11.x ?)

Fix

editing line 79 of ./deploy/win_build.sh from
/mingw64/lib/python$PY_VERSION/{json,collections,encodings,logging,urllib} \
to
/mingw64/lib/python$PY_VERSION/{json,collections,encodings,logging,urllib,re} \
adds the package.

Should I do a merge request for this fix?