You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bpo-45019: Add a tool to generate list of modules to include for frozen modules (gh-27980)
Frozen modules must be added to several files in order to work properly. Before this change this had to be done manually. Here we add a tool to generate the relevant lines in those files instead. This helps us avoid mistakes and omissions.
https://bugs.python.org/issue45019
<WarningText="Frozen importlib files were updated. Please rebuild to pick up the changes.%0D%0A%0D%0AIf you are not developing on Windows but you see this error on a continuous integration build, please run 'make regen-all' and commit anything that changes."
148
+
<WarningText="Frozen modules (e.g. importlib) were updated. Please rebuild to pick up the changes.%0D%0A%0D%0AIf you are not developing on Windows but you see this error on a continuous integration build, please run 'make regen-all' and commit anything that changes."
147
149
Condition="'@(_Updated)' != '' and $(Configuration) == 'Debug'" />
148
-
<ErrorText="Frozen importlib files were updated. Please rebuild to pick up the changes.%0D%0A%0D%0AIf you are not developing on Windows but you see this error on a continuous integration build, please run 'make regen-all' and commit anything that changes."
150
+
<ErrorText="Frozen (e.g. importlib) files were updated. Please rebuild to pick up the changes.%0D%0A%0D%0AIf you are not developing on Windows but you see this error on a continuous integration build, please run 'make regen-all' and commit anything that changes."
149
151
Condition="'@(_Updated)' != '' and $(Configuration) == 'Release'" />
150
152
</Target>
153
+
<TargetName="RebuildFrozen"AfterTargets="AfterBuild"Condition="$(Configuration) == 'Debug' or $(Configuration) == 'Release'"
154
+
DependsOnTargets="_RebuildFrozen">
155
+
</Target>
151
156
<TargetName="RebuildImportLib"AfterTargets="AfterBuild"Condition="$(Configuration) == 'Debug' or $(Configuration) == 'Release'"
0 commit comments