Nuitka-winsvc 2.4.8__cp311-cp311-win_amd64.whl → 2.5.1__cp311-cp311-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of Nuitka-winsvc might be problematic. Click here for more details.
- {Nuitka_winsvc-2.4.8.dist-info → Nuitka_winsvc-2.5.1.dist-info}/METADATA +2 -1
- {Nuitka_winsvc-2.4.8.dist-info → Nuitka_winsvc-2.5.1.dist-info}/RECORD +294 -271
- {Nuitka_winsvc-2.4.8.dist-info → Nuitka_winsvc-2.5.1.dist-info}/WHEEL +1 -1
- nuitka/Builtins.py +31 -0
- nuitka/HardImportRegistry.py +8 -0
- nuitka/MainControl.py +9 -4
- nuitka/OptionParsing.py +105 -52
- nuitka/Options.py +73 -16
- nuitka/OutputDirectories.py +7 -2
- nuitka/PostProcessing.py +69 -38
- nuitka/Progress.py +16 -1
- nuitka/PythonVersions.py +2 -1
- nuitka/Serialization.py +4 -2
- nuitka/Tracing.py +69 -1
- nuitka/Version.py +2 -2
- nuitka/build/Backend.scons +45 -5
- nuitka/build/CCompilerVersion.scons +6 -0
- nuitka/build/Onefile.scons +6 -0
- nuitka/build/SconsCaching.py +12 -2
- nuitka/build/SconsCompilerSettings.py +17 -6
- nuitka/build/SconsInterface.py +1 -0
- nuitka/build/SconsUtils.py +5 -0
- nuitka/build/include/nuitka/allocator.h +124 -1
- nuitka/build/include/nuitka/calling.h +6 -6
- nuitka/build/include/nuitka/compiled_asyncgen.h +10 -7
- nuitka/build/include/nuitka/compiled_frame.h +2 -1
- nuitka/build/include/nuitka/constants.h +6 -0
- nuitka/build/include/nuitka/debug_settings.h +60 -0
- nuitka/build/include/nuitka/exceptions.h +264 -121
- nuitka/build/include/nuitka/helper/attributes.h +0 -4
- nuitka/build/include/nuitka/helper/calling_generated.h +52 -52
- nuitka/build/include/nuitka/helper/comparisons_dual_eq.h +47 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_ge.h +39 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_gt.h +39 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_le.h +47 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_lt.h +47 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_ne.h +39 -0
- nuitka/build/include/nuitka/helper/dictionaries.h +65 -29
- nuitka/build/include/nuitka/helper/ints.h +86 -37
- nuitka/build/include/nuitka/helper/iterators.h +82 -34
- nuitka/build/include/nuitka/helper/operations.h +3 -0
- nuitka/build/include/nuitka/helper/operations_binary_add.h +6 -0
- nuitka/build/include/nuitka/helper/operations_binary_dual_add.h +34 -0
- nuitka/build/include/nuitka/helper/operations_binary_sub.h +6 -0
- nuitka/build/include/nuitka/helper/operations_inplace_add.h +3 -0
- nuitka/build/include/nuitka/helper/operations_inplace_sub.h +3 -0
- nuitka/build/include/nuitka/helper/raising.h +47 -28
- nuitka/build/include/nuitka/helper/richcomparisons.h +7 -0
- nuitka/build/include/nuitka/helpers.h +12 -2
- nuitka/build/include/nuitka/prelude.h +35 -25
- nuitka/build/include/nuitka/printing.h +9 -7
- nuitka/build/include/nuitka/threading.h +15 -1
- nuitka/build/include/nuitka/type_aliases.h +3 -0
- nuitka/build/inline_copy/stubgen/astunparse.py +938 -0
- nuitka/build/inline_copy/stubgen/six.py +998 -0
- nuitka/build/inline_copy/stubgen/stubgen.py +307 -0
- nuitka/build/static_src/CompiledAsyncgenType.c +45 -39
- nuitka/build/static_src/CompiledCellType.c +6 -4
- nuitka/build/static_src/CompiledCodeHelpers.c +104 -40
- nuitka/build/static_src/CompiledCoroutineType.c +40 -30
- nuitka/build/static_src/CompiledFrameType.c +110 -79
- nuitka/build/static_src/CompiledFunctionType.c +173 -151
- nuitka/build/static_src/CompiledGeneratorType.c +51 -49
- nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +424 -46
- nuitka/build/static_src/CompiledMethodType.c +10 -13
- nuitka/build/static_src/HelpersAllocator.c +270 -32
- nuitka/build/static_src/HelpersAttributes.c +0 -21
- nuitka/build/static_src/HelpersBuiltin.c +22 -13
- nuitka/build/static_src/HelpersCalling.c +7 -7
- nuitka/build/static_src/HelpersCallingGenerated.c +70 -70
- nuitka/build/static_src/HelpersComparisonDualEq.c +183 -0
- nuitka/build/static_src/HelpersComparisonDualGe.c +121 -0
- nuitka/build/static_src/HelpersComparisonDualGt.c +121 -0
- nuitka/build/static_src/HelpersComparisonDualLe.c +183 -0
- nuitka/build/static_src/HelpersComparisonDualLt.c +183 -0
- nuitka/build/static_src/HelpersComparisonDualNe.c +121 -0
- nuitka/build/static_src/HelpersComparisonEq.c +18 -4
- nuitka/build/static_src/HelpersComparisonEqUtils.c +1 -0
- nuitka/build/static_src/HelpersComparisonGe.c +18 -4
- nuitka/build/static_src/HelpersComparisonGt.c +18 -4
- nuitka/build/static_src/HelpersComparisonLe.c +18 -4
- nuitka/build/static_src/HelpersComparisonLt.c +18 -4
- nuitka/build/static_src/HelpersComparisonNe.c +18 -4
- nuitka/build/static_src/HelpersConsole.c +34 -8
- nuitka/build/static_src/HelpersConstantsBlob.c +10 -4
- nuitka/build/static_src/HelpersDictionaries.c +181 -34
- nuitka/build/static_src/HelpersDictionariesGenerated.c +0 -106
- nuitka/build/static_src/HelpersExceptions.c +24 -50
- nuitka/build/static_src/HelpersFiles.c +79 -5
- nuitka/build/static_src/HelpersImport.c +13 -9
- nuitka/build/static_src/HelpersImportHard.c +23 -46
- nuitka/build/static_src/HelpersLists.c +98 -9
- nuitka/build/static_src/HelpersMatching.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryAdd.c +224 -6
- nuitka/build/static_src/HelpersOperationBinaryAddUtils.c +3 -0
- nuitka/build/static_src/HelpersOperationBinaryBitand.c +5 -5
- nuitka/build/static_src/HelpersOperationBinaryBitor.c +5 -5
- nuitka/build/static_src/HelpersOperationBinaryBitxor.c +5 -5
- nuitka/build/static_src/HelpersOperationBinaryDivmod.c +8 -2
- nuitka/build/static_src/HelpersOperationBinaryDualAdd.c +172 -0
- nuitka/build/static_src/HelpersOperationBinaryFloordiv.c +14 -8
- nuitka/build/static_src/HelpersOperationBinaryLshift.c +36 -36
- nuitka/build/static_src/HelpersOperationBinaryMatmult.c +1 -0
- nuitka/build/static_src/HelpersOperationBinaryMod.c +22 -10
- nuitka/build/static_src/HelpersOperationBinaryMult.c +17 -7
- nuitka/build/static_src/HelpersOperationBinaryOlddiv.c +14 -8
- nuitka/build/static_src/HelpersOperationBinaryPow.c +24 -24
- nuitka/build/static_src/HelpersOperationBinaryRshift.c +4 -4
- nuitka/build/static_src/HelpersOperationBinarySub.c +229 -8
- nuitka/build/static_src/HelpersOperationBinaryTruediv.c +8 -2
- nuitka/build/static_src/HelpersOperationInplaceAdd.c +162 -10
- nuitka/build/static_src/HelpersOperationInplaceBitand.c +5 -5
- nuitka/build/static_src/HelpersOperationInplaceBitor.c +5 -5
- nuitka/build/static_src/HelpersOperationInplaceBitxor.c +5 -5
- nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +11 -6
- nuitka/build/static_src/HelpersOperationInplaceLshift.c +20 -20
- nuitka/build/static_src/HelpersOperationInplaceMatmult.c +1 -0
- nuitka/build/static_src/HelpersOperationInplaceMod.c +11 -6
- nuitka/build/static_src/HelpersOperationInplaceMult.c +11 -6
- nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +11 -6
- nuitka/build/static_src/HelpersOperationInplacePow.c +20 -20
- nuitka/build/static_src/HelpersOperationInplaceRshift.c +4 -4
- nuitka/build/static_src/HelpersOperationInplaceSub.c +163 -10
- nuitka/build/static_src/HelpersOperationInplaceTruediv.c +6 -1
- nuitka/build/static_src/HelpersProfiling.c +1 -1
- nuitka/build/static_src/HelpersRaising.c +255 -310
- nuitka/build/static_src/HelpersStrings.c +1 -1
- nuitka/build/static_src/HelpersTuples.c +1 -1
- nuitka/build/static_src/HelpersTypes.c +98 -2
- nuitka/build/static_src/MainProgram.c +117 -29
- nuitka/build/static_src/MetaPathBasedLoader.c +18 -19
- nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +134 -11
- nuitka/build/static_src/OnefileBootstrap.c +6 -1
- nuitka/code_generation/AsyncgenCodes.py +2 -6
- nuitka/code_generation/BinaryOperationHelperDefinitions.py +269 -167
- nuitka/code_generation/BuiltinCodes.py +9 -1
- nuitka/code_generation/CallCodes.py +16 -16
- nuitka/code_generation/CodeGeneration.py +14 -2
- nuitka/code_generation/CodeHelperSelection.py +1 -1
- nuitka/code_generation/CodeHelpers.py +4 -1
- nuitka/code_generation/CodeObjectCodes.py +2 -2
- nuitka/code_generation/ComparisonCodes.py +13 -2
- nuitka/code_generation/ComparisonHelperDefinitions.py +23 -8
- nuitka/code_generation/Contexts.py +28 -16
- nuitka/code_generation/CoroutineCodes.py +2 -6
- nuitka/code_generation/DictCodes.py +3 -3
- nuitka/code_generation/ErrorCodes.py +34 -50
- nuitka/code_generation/ExceptionCodes.py +165 -96
- nuitka/code_generation/ExpressionCTypeSelectionHelpers.py +25 -10
- nuitka/code_generation/FrameCodes.py +4 -11
- nuitka/code_generation/FunctionCodes.py +2 -6
- nuitka/code_generation/GeneratorCodes.py +2 -6
- nuitka/code_generation/GlobalConstants.py +8 -2
- nuitka/code_generation/GlobalsLocalsCodes.py +2 -2
- nuitka/code_generation/IteratorCodes.py +67 -54
- nuitka/code_generation/LineNumberCodes.py +1 -3
- nuitka/code_generation/ModuleCodes.py +28 -4
- nuitka/code_generation/OperationCodes.py +51 -20
- nuitka/code_generation/PackageResourceCodes.py +37 -0
- nuitka/code_generation/RaisingCodes.py +164 -90
- nuitka/code_generation/Reports.py +13 -5
- nuitka/code_generation/ReturnCodes.py +2 -16
- nuitka/code_generation/TryCodes.py +12 -24
- nuitka/code_generation/TypeAliasCodes.py +48 -0
- nuitka/code_generation/VariableCodes.py +99 -40
- nuitka/code_generation/VariableDeclarations.py +8 -8
- nuitka/code_generation/YieldCodes.py +1 -1
- nuitka/code_generation/c_types/CTypeBases.py +10 -2
- nuitka/code_generation/c_types/CTypeModuleDictVariables.py +3 -0
- nuitka/code_generation/c_types/CTypeNuitkaBooleans.py +3 -4
- nuitka/code_generation/c_types/CTypeNuitkaInts.py +70 -25
- nuitka/code_generation/c_types/CTypeNuitkaVoids.py +1 -1
- nuitka/code_generation/c_types/CTypePyObjectPointers.py +16 -6
- nuitka/code_generation/templates/CodeTemplatesAsyncgens.py +2 -2
- nuitka/code_generation/templates/CodeTemplatesConstants.py +11 -3
- nuitka/code_generation/templates/CodeTemplatesCoroutines.py +2 -2
- nuitka/code_generation/templates/CodeTemplatesExceptions.py +15 -16
- nuitka/code_generation/templates/CodeTemplatesFrames.py +18 -10
- nuitka/code_generation/templates/CodeTemplatesFunction.py +2 -2
- nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py +2 -2
- nuitka/code_generation/templates/CodeTemplatesIterators.py +1 -35
- nuitka/code_generation/templates/CodeTemplatesModules.py +34 -4
- nuitka/code_generation/templates/CodeTemplatesVariables.py +73 -0
- nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2 +3 -3
- nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2 +3 -3
- nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2 +0 -105
- nuitka/code_generation/templates_c/HelperImportHard.c.j2 +1 -2
- nuitka/code_generation/templates_c/HelperLongTools.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationBinaryDual.c.j2 +115 -0
- nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2 +9 -9
- nuitka/code_generation/templates_c/HelperOperationComparisonDual.c.j2 +86 -0
- nuitka/code_generation/templates_c/HelperOperationComparisonFloat.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonInt.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonList.c.j2 +9 -9
- nuitka/code_generation/templates_c/HelperOperationComparisonLong.c.j2 +7 -7
- nuitka/code_generation/templates_c/HelperOperationComparisonStr.c.j2 +9 -9
- nuitka/code_generation/templates_c/HelperOperationComparisonTuple.c.j2 +7 -7
- nuitka/code_generation/templates_c/HelperOperationComparisonUnicode.c.j2 +4 -4
- nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsInt.c.j2 +31 -31
- nuitka/code_generation/templates_c/HelperSlotsLong.c.j2 +1 -1
- nuitka/containers/Namedtuples.py +6 -0
- nuitka/containers/OrderedSets.py +105 -5
- nuitka/distutils/Build.py +14 -0
- nuitka/distutils/DistutilCommands.py +50 -10
- nuitka/finalizations/Finalization.py +3 -3
- nuitka/finalizations/FinalizeMarkups.py +10 -14
- nuitka/freezer/DependsExe.py +13 -3
- nuitka/freezer/DllDependenciesMacOS.py +18 -1
- nuitka/freezer/DllDependenciesWin32.py +26 -12
- nuitka/freezer/ImportDetection.py +3 -0
- nuitka/freezer/IncludedDataFiles.py +31 -8
- nuitka/freezer/IncludedEntryPoints.py +3 -2
- nuitka/freezer/Standalone.py +76 -18
- nuitka/importing/Importing.py +33 -6
- nuitka/importing/Recursion.py +12 -1
- nuitka/importing/StandardLibrary.py +57 -59
- nuitka/nodes/AsyncgenNodes.py +3 -6
- nuitka/nodes/BuiltinIteratorNodes.py +1 -1
- nuitka/nodes/BuiltinRefNodes.py +14 -30
- nuitka/nodes/ChildrenHavingMixins.py +439 -46
- nuitka/nodes/ConditionalNodes.py +3 -2
- nuitka/nodes/CoroutineNodes.py +3 -6
- nuitka/nodes/ExceptionNodes.py +102 -26
- nuitka/nodes/ExpressionBasesGenerated.py +288 -4
- nuitka/nodes/FrameNodes.py +22 -11
- nuitka/nodes/FunctionNodes.py +3 -3
- nuitka/nodes/GeneratorNodes.py +3 -6
- nuitka/nodes/HardImportNodesGenerated.py +182 -0
- nuitka/nodes/ImportNodes.py +2 -2
- nuitka/nodes/NodeBases.py +28 -1
- nuitka/nodes/NodeMakingHelpers.py +71 -50
- nuitka/nodes/OperatorNodesUnary.py +128 -3
- nuitka/nodes/OsSysNodes.py +37 -6
- nuitka/nodes/OutlineNodes.py +2 -2
- nuitka/nodes/StatementBasesGenerated.py +0 -2
- nuitka/nodes/StatementNodes.py +8 -7
- nuitka/nodes/SubscriptNodes.py +1 -1
- nuitka/nodes/TypeNodes.py +28 -1
- nuitka/nodes/shapes/BuiltinTypeShapes.py +24 -7
- nuitka/nodes/shapes/ShapeMixins.py +17 -0
- nuitka/nodes/shapes/StandardShapes.py +53 -1
- nuitka/optimizations/BytecodeDemotion.py +2 -1
- nuitka/plugins/PluginBase.py +64 -22
- nuitka/plugins/Plugins.py +6 -3
- nuitka/plugins/standard/AntiBloatPlugin.py +23 -12
- nuitka/plugins/standard/ImplicitImports.py +1 -13
- nuitka/plugins/standard/KivyPlugin.py +3 -12
- nuitka/plugins/standard/MatplotlibPlugin.py +12 -1
- nuitka/plugins/standard/MultiprocessingPlugin.py +11 -20
- nuitka/plugins/standard/PlaywrightPlugin.py +184 -0
- nuitka/plugins/standard/PySidePyQtPlugin.py +8 -0
- nuitka/plugins/standard/TkinterPlugin.py +0 -56
- nuitka/plugins/standard/TransformersPlugin.py +70 -275
- nuitka/plugins/standard/standard.nuitka-package.config.yml +510 -28
- nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +35 -2
- nuitka/reports/CompilationReportReader.py +12 -0
- nuitka/reports/Reports.py +11 -0
- nuitka/specs/BuiltinParameterSpecs.py +5 -1
- nuitka/specs/HardImportSpecs.py +7 -0
- nuitka/specs/ParameterSpecs.py +4 -4
- nuitka/tools/general/dll_report/__main__.py +10 -1
- nuitka/tools/onefile_compressor/OnefileCompressor.py +1 -1
- nuitka/tools/specialize/CTypeDescriptions.py +158 -9
- nuitka/tools/specialize/SpecializeC.py +218 -56
- nuitka/tools/testing/Common.py +70 -63
- nuitka/tools/testing/compare_with_cpython/__main__.py +3 -1
- nuitka/tools/testing/measure_construct_performance/__main__.py +1 -8
- nuitka/tools/testing/run_nuitka_tests/__main__.py +77 -11
- nuitka/tools/watch/AutoStage.py +1 -0
- nuitka/tree/Building.py +10 -37
- nuitka/tree/ComplexCallHelperFunctions.py +4 -0
- nuitka/tree/ReformulationAssertStatements.py +31 -14
- nuitka/tree/ReformulationAssignmentStatements.py +5 -1
- nuitka/tree/ReformulationClasses3.py +94 -19
- nuitka/tree/ReformulationDictionaryCreation.py +1 -0
- nuitka/tree/ReformulationFunctionStatements.py +1 -1
- nuitka/tree/ReformulationMatchStatements.py +3 -1
- nuitka/tree/ReformulationYieldExpressions.py +23 -5
- nuitka/utils/CommandLineOptions.py +27 -3
- nuitka/utils/Download.py +2 -2
- nuitka/utils/Execution.py +36 -31
- nuitka/utils/FileOperations.py +39 -54
- nuitka/utils/Importing.py +2 -14
- nuitka/utils/InlineCopies.py +52 -0
- nuitka/utils/InstalledPythons.py +9 -4
- nuitka/utils/Json.py +2 -2
- nuitka/utils/PackageResources.py +44 -0
- nuitka/utils/Utils.py +17 -0
- {Nuitka_winsvc-2.4.8.data → Nuitka_winsvc-2.5.1.data}/scripts/nuitka-run.cmd +0 -0
- {Nuitka_winsvc-2.4.8.data → Nuitka_winsvc-2.5.1.data}/scripts/nuitka.cmd +0 -0
- {Nuitka_winsvc-2.4.8.dist-info → Nuitka_winsvc-2.5.1.dist-info}/LICENSE.txt +0 -0
- {Nuitka_winsvc-2.4.8.dist-info → Nuitka_winsvc-2.5.1.dist-info}/entry_points.txt +0 -0
- {Nuitka_winsvc-2.4.8.dist-info → Nuitka_winsvc-2.5.1.dist-info}/top_level.txt +0 -0
|
@@ -40,6 +40,12 @@
|
|
|
40
40
|
- depends:
|
|
41
41
|
- 'yaml'
|
|
42
42
|
|
|
43
|
+
- module-name: 'absl.testing' # checksum: 2f66bb94
|
|
44
|
+
anti-bloat:
|
|
45
|
+
- description: 'Need to allow unittest usage'
|
|
46
|
+
bloat-mode-overrides:
|
|
47
|
+
'unittest': 'allow'
|
|
48
|
+
|
|
43
49
|
- module-name: 'accessible_output2' # checksum: 27cd20b7
|
|
44
50
|
data-files:
|
|
45
51
|
- dirs:
|
|
@@ -135,6 +141,14 @@
|
|
|
135
141
|
change_class:
|
|
136
142
|
'Test': 'un-usable'
|
|
137
143
|
|
|
144
|
+
- module-name: 'anyio' # checksum: f47c3c24
|
|
145
|
+
anti-bloat:
|
|
146
|
+
- description: 'remove pytest reference'
|
|
147
|
+
no-auto-follow:
|
|
148
|
+
'pytest': 'ignore'
|
|
149
|
+
'_pytest': 'ignore'
|
|
150
|
+
when: 'not use_pytest'
|
|
151
|
+
|
|
138
152
|
- module-name: 'anyio._core._eventloop' # checksum: c0b82a1e
|
|
139
153
|
implicit-imports:
|
|
140
154
|
- depends:
|
|
@@ -173,14 +187,17 @@
|
|
|
173
187
|
- depends:
|
|
174
188
|
- 'apt_pkg'
|
|
175
189
|
|
|
176
|
-
- module-name: 'arcade' # checksum:
|
|
190
|
+
- module-name: 'arcade' # checksum: d7d0718b
|
|
177
191
|
data-files:
|
|
178
192
|
- dirs:
|
|
179
193
|
- 'resources/system'
|
|
194
|
+
- patterns:
|
|
195
|
+
- 'VERSION'
|
|
180
196
|
anti-bloat:
|
|
181
197
|
- no-auto-follow:
|
|
182
|
-
'examples': 'Arcade examples are not
|
|
183
|
-
'experimental': 'Experimental features of Arcade will not be available unless you do "--include-module=
|
|
198
|
+
'examples': 'Arcade examples are not available unless you do "--include-module=arcade.examples"'
|
|
199
|
+
'experimental': 'Experimental features of Arcade will not be available unless you do "--include-module=arcade.experimental"'
|
|
200
|
+
'future': 'Upcoming features of Arcade will not be available unless you do "--include-module=arcade.future"'
|
|
184
201
|
|
|
185
202
|
- module-name: 'aspose' # checksum: 1ffc48f1
|
|
186
203
|
data-files:
|
|
@@ -328,10 +345,11 @@
|
|
|
328
345
|
- depends:
|
|
329
346
|
- 'av.filter.pad'
|
|
330
347
|
|
|
331
|
-
- module-name: 'av.frame' # checksum:
|
|
348
|
+
- module-name: 'av.frame' # checksum: 121c2594
|
|
332
349
|
implicit-imports:
|
|
333
350
|
- depends:
|
|
334
351
|
- 'av.buffer'
|
|
352
|
+
- 'av.opaque'
|
|
335
353
|
|
|
336
354
|
- module-name: 'av.logging' # checksum: 7da91901
|
|
337
355
|
implicit-imports:
|
|
@@ -344,11 +362,12 @@
|
|
|
344
362
|
- 'av.enum'
|
|
345
363
|
- 'av.utils'
|
|
346
364
|
|
|
347
|
-
- module-name: 'av.packet' # checksum:
|
|
365
|
+
- module-name: 'av.packet' # checksum: 3bd21471
|
|
348
366
|
implicit-imports:
|
|
349
367
|
- depends:
|
|
350
368
|
- 'av.dictionary'
|
|
351
369
|
- 'av.sidedata.sidedata'
|
|
370
|
+
- 'av.opaque'
|
|
352
371
|
|
|
353
372
|
- module-name: 'av.sidedata.sidedata' # checksum: 6adb0fe2
|
|
354
373
|
implicit-imports:
|
|
@@ -368,11 +387,17 @@
|
|
|
368
387
|
- 'av.plane'
|
|
369
388
|
- 'av.video.plane'
|
|
370
389
|
|
|
371
|
-
- module-name: 'azure.cognitiveservices.speech' # checksum:
|
|
390
|
+
- module-name: 'azure.cognitiveservices.speech' # checksum: e9989c05
|
|
391
|
+
data-files:
|
|
392
|
+
- patterns:
|
|
393
|
+
- 'libMicrosoft.CognitiveServices.Speech.extension.lu.a'
|
|
394
|
+
when: 'macos'
|
|
395
|
+
|
|
372
396
|
dlls:
|
|
373
397
|
- from_filenames:
|
|
374
398
|
prefixes:
|
|
375
399
|
- 'Microsoft.CognitiveServices.Speech'
|
|
400
|
+
- 'libMicrosoft.CognitiveServices.Speech'
|
|
376
401
|
|
|
377
402
|
- module-name: 'babel' # checksum: 29ed1c5b
|
|
378
403
|
data-files:
|
|
@@ -553,6 +578,12 @@
|
|
|
553
578
|
- depends:
|
|
554
579
|
- '_cffi_backend'
|
|
555
580
|
|
|
581
|
+
- module-name: 'bsdiff4' # checksum: b157a72f
|
|
582
|
+
anti-bloat:
|
|
583
|
+
- description: 'remove unittest reference'
|
|
584
|
+
change_function:
|
|
585
|
+
'test': 'un-callable'
|
|
586
|
+
|
|
556
587
|
- module-name: 'cairo' # checksum: 16042494
|
|
557
588
|
implicit-imports:
|
|
558
589
|
- depends:
|
|
@@ -837,7 +868,12 @@
|
|
|
837
868
|
# Not necessary on Windows
|
|
838
869
|
when: 'not win32'
|
|
839
870
|
|
|
840
|
-
- module-name: 'cv2' # checksum:
|
|
871
|
+
- module-name: 'cv2' # checksum: 6069a546
|
|
872
|
+
variables:
|
|
873
|
+
setup_code:
|
|
874
|
+
- 'import cv2'
|
|
875
|
+
declarations:
|
|
876
|
+
'cv2_extra_sub_modules': 'tuple(m for m in cv2.__collect_extra_submodules(False) if m != ".dylibs")'
|
|
841
877
|
data-files:
|
|
842
878
|
- dirs:
|
|
843
879
|
- 'qt/fonts'
|
|
@@ -860,7 +896,7 @@
|
|
|
860
896
|
? "load_first_config([\n"
|
|
861
897
|
: 'if False: (['
|
|
862
898
|
replacements:
|
|
863
|
-
"load_first_config(['config.py'], True)": "textwrap.indent(
|
|
899
|
+
"load_first_config(['config.py'], True)": "textwrap.indent(get_data('cv2', 'config.py').decode('utf8'), ' ') + textwrap.indent(get_data('cv2', 'config-3.py').decode('utf8'), ' ')"
|
|
864
900
|
- description: 'workaround for colliding native module import'
|
|
865
901
|
replacements:
|
|
866
902
|
# Before OpenCV 4.6
|
|
@@ -872,11 +908,21 @@
|
|
|
872
908
|
replacements:
|
|
873
909
|
'native_module = importlib.import_module("cv2")': '"from importlib.machinery import ExtensionFileLoader; from importlib.util import spec_from_file_location; from importlib._bootstrap import _load; __path = os.path.join(os.path.dirname(__file__), \"cv2%s\"); native_module = _load(spec_from_file_location(\"cv2\", __path, loader=ExtensionFileLoader(\"cv2\", __path)))" % extension_suffix'
|
|
874
910
|
when: 'standalone and python312_or_higher and not nuitka_python'
|
|
911
|
+
- description: 'remove error hiding code'
|
|
912
|
+
replacements_plain:
|
|
913
|
+
"print('OpenCV bindings requires \"numpy\" package.')": 'raise'
|
|
914
|
+
- description: 'submodules'
|
|
915
|
+
replacements:
|
|
916
|
+
'__collect_extra_submodules(DEBUG)': 'repr(get_variable("cv2_extra_sub_modules"))'
|
|
917
|
+
change_function:
|
|
918
|
+
'__collect_extra_submodules': 'un-callable'
|
|
919
|
+
when: 'standalone'
|
|
875
920
|
implicit-imports:
|
|
876
921
|
- depends:
|
|
877
922
|
- 'cv2.cv2'
|
|
878
923
|
- 'numpy'
|
|
879
924
|
- 'numpy.core'
|
|
925
|
+
- '["cv2.%s" % m for m in get_variable("cv2_extra_sub_modules")]'
|
|
880
926
|
- pre-import-code:
|
|
881
927
|
- |
|
|
882
928
|
import os
|
|
@@ -885,8 +931,8 @@
|
|
|
885
931
|
when: 'linux and standalone'
|
|
886
932
|
options:
|
|
887
933
|
checks:
|
|
888
|
-
- description: 'OpenCV2 is
|
|
889
|
-
support_info: '
|
|
934
|
+
- description: 'OpenCV2 is only supported with 4.6 or later'
|
|
935
|
+
support_info: 'error'
|
|
890
936
|
when: 'version(get_dist_name("cv2")) < (4,6)'
|
|
891
937
|
|
|
892
938
|
- module-name: 'cvxpy.utilities.key_utils' # checksum: fc2bb323
|
|
@@ -1118,18 +1164,18 @@
|
|
|
1118
1164
|
- dirs:
|
|
1119
1165
|
- 'locale/en'
|
|
1120
1166
|
|
|
1121
|
-
- module-name: 'django.core.management' # checksum:
|
|
1167
|
+
- module-name: 'django.core.management' # checksum: cb686c29
|
|
1122
1168
|
parameters:
|
|
1123
1169
|
- 'name': 'settings-module'
|
|
1124
1170
|
'values': 'checkModuleName(value)'
|
|
1125
1171
|
variables:
|
|
1126
1172
|
setup_code:
|
|
1127
1173
|
- 'import os, importlib'
|
|
1128
|
-
- 'settings = importlib.import_module(os.getenv("PARAMETER_SETTINGS_MODULE"))'
|
|
1174
|
+
- 'settings = importlib.import_module(os.getenv("PARAMETER_SETTINGS_MODULE")) if os.getenv("PARAMETER_SETTINGS_MODULE") else None'
|
|
1129
1175
|
declarations:
|
|
1130
|
-
'django_installed_apps': 'settings.INSTALLED_APPS'
|
|
1176
|
+
'django_installed_apps': 'settings.INSTALLED_APPS if settings else ()'
|
|
1131
1177
|
environment:
|
|
1132
|
-
'PARAMETER_SETTINGS_MODULE': 'get_parameter("settings-module",
|
|
1178
|
+
'PARAMETER_SETTINGS_MODULE': 'get_parameter("settings-module", "")'
|
|
1133
1179
|
anti-bloat:
|
|
1134
1180
|
# This makes exceptions to the "*" dependency in the
|
|
1135
1181
|
# implicit-imports section below.
|
|
@@ -1147,7 +1193,7 @@
|
|
|
1147
1193
|
checks:
|
|
1148
1194
|
- description: "Django settings module must be specified with '--module-parameter=django-settings-module=<settings_module_name>'"
|
|
1149
1195
|
support_info: 'parameter'
|
|
1150
|
-
when: '
|
|
1196
|
+
when: 'get_parameter("settings-module", None) is None'
|
|
1151
1197
|
|
|
1152
1198
|
- module-name: 'django.core.management.commands.shell' # checksum: 7d07a2d1
|
|
1153
1199
|
anti-bloat:
|
|
@@ -1178,6 +1224,12 @@
|
|
|
1178
1224
|
- depends:
|
|
1179
1225
|
- 'django.template.loader_tags'
|
|
1180
1226
|
|
|
1227
|
+
- module-name: 'django.views.debug' # checksum: 466f47d3
|
|
1228
|
+
anti-bloat:
|
|
1229
|
+
- description: 'workaround columns not available from compiled frame execution'
|
|
1230
|
+
replacements_plain:
|
|
1231
|
+
'if PY311:': 'if False:'
|
|
1232
|
+
|
|
1181
1233
|
- module-name: 'dns.rdtypes' # checksum: 119feab4
|
|
1182
1234
|
implicit-imports:
|
|
1183
1235
|
- depends:
|
|
@@ -1250,11 +1302,11 @@
|
|
|
1250
1302
|
- patterns:
|
|
1251
1303
|
- 'specs/*.json'
|
|
1252
1304
|
|
|
1253
|
-
- module-name: 'Equation' # checksum:
|
|
1305
|
+
- module-name: 'Equation' # checksum: b92f083c
|
|
1254
1306
|
anti-bloat:
|
|
1255
1307
|
- description: 'workaround for standalone mode'
|
|
1256
1308
|
replacements:
|
|
1257
|
-
'os.listdir(dirname)': 'repr(os.listdir(
|
|
1309
|
+
'os.listdir(dirname)': 'repr(os.listdir(get_module_directory("Equation")))'
|
|
1258
1310
|
when: 'standalone'
|
|
1259
1311
|
implicit-imports:
|
|
1260
1312
|
- depends:
|
|
@@ -1324,6 +1376,11 @@
|
|
|
1324
1376
|
- depends:
|
|
1325
1377
|
- 'fastapi.routing'
|
|
1326
1378
|
|
|
1379
|
+
- module-name: 'fastapi.exceptions' # checksum: 9806d681
|
|
1380
|
+
implicit-imports:
|
|
1381
|
+
- depends:
|
|
1382
|
+
- 'attrs'
|
|
1383
|
+
|
|
1327
1384
|
- module-name: 'feedparser.html' # checksum: 8b17e6bc
|
|
1328
1385
|
anti-bloat:
|
|
1329
1386
|
- description: 'use SGML code more naturally'
|
|
@@ -1739,6 +1796,11 @@
|
|
|
1739
1796
|
'from torch.utils.cpp_extension import _get_build_directory, load': ''
|
|
1740
1797
|
when: 'not use_setuptools'
|
|
1741
1798
|
|
|
1799
|
+
- module-name: 'gssapi.raw' # checksum: f8e7301e
|
|
1800
|
+
implicit-imports:
|
|
1801
|
+
- depends:
|
|
1802
|
+
- 'gssapi.raw._enum_extensions.*'
|
|
1803
|
+
|
|
1742
1804
|
- module-name: 'gtk._gtk' # checksum: 4fb4a03b
|
|
1743
1805
|
implicit-imports:
|
|
1744
1806
|
- depends:
|
|
@@ -2037,6 +2099,18 @@
|
|
|
2037
2099
|
- dirs:
|
|
2038
2100
|
- 'schemas'
|
|
2039
2101
|
|
|
2102
|
+
- module-name: 'jupyter_client' # checksum: f62be95d
|
|
2103
|
+
data-files:
|
|
2104
|
+
- include-metadata:
|
|
2105
|
+
- 'jupyter_client'
|
|
2106
|
+
|
|
2107
|
+
- module-name: 'keras' # checksum: 292d6ceb
|
|
2108
|
+
import-hacks:
|
|
2109
|
+
# This package adds another directory to the search path of itself,
|
|
2110
|
+
# which we will not find packages in unless added.
|
|
2111
|
+
- package-paths:
|
|
2112
|
+
- 'keras.api'
|
|
2113
|
+
|
|
2040
2114
|
- module-name: 'keras.api._v2.keras.__internal__.utils' # checksum: 63342938
|
|
2041
2115
|
anti-bloat:
|
|
2042
2116
|
- description: 'remove keras testing tools reference'
|
|
@@ -2072,10 +2146,11 @@
|
|
|
2072
2146
|
- depends:
|
|
2073
2147
|
- 'keyring.backends.*'
|
|
2074
2148
|
|
|
2075
|
-
- module-name: 'keyring.backends.Windows' # checksum:
|
|
2149
|
+
- module-name: 'keyring.backends.Windows' # checksum: a414afda
|
|
2076
2150
|
implicit-imports:
|
|
2077
2151
|
- depends:
|
|
2078
2152
|
- 'win32timezone'
|
|
2153
|
+
- 'win32ctypes.core.ctypes.*'
|
|
2079
2154
|
|
|
2080
2155
|
- module-name: 'kivy' # checksum: 648dc799
|
|
2081
2156
|
data-files:
|
|
@@ -2095,6 +2170,25 @@
|
|
|
2095
2170
|
- depends:
|
|
2096
2171
|
- 'kivy.weakmethod'
|
|
2097
2172
|
|
|
2173
|
+
- module-name: 'kivy.core.clipboard' # checksum: d1e34cc4
|
|
2174
|
+
implicit-imports:
|
|
2175
|
+
- depends:
|
|
2176
|
+
- 'kivy.core.clipboard.clipboard_winctypes'
|
|
2177
|
+
when: 'win32'
|
|
2178
|
+
- depends:
|
|
2179
|
+
- 'kivy.core.clipboard.clipboard_nspaste'
|
|
2180
|
+
when: 'macos and has_module("pyobjus")'
|
|
2181
|
+
- depends:
|
|
2182
|
+
- 'kivy.core.clipboard.clipboard_sdl2'
|
|
2183
|
+
when: 'macos and not has_module("pyobjus")'
|
|
2184
|
+
- depends:
|
|
2185
|
+
- 'kivy.core.clipboard.clipboard_xclip'
|
|
2186
|
+
- 'kivy.core.clipboard.clipboard_xsel'
|
|
2187
|
+
- 'kivy.core.clipboard.clipboard_dbusklipper'
|
|
2188
|
+
- 'kivy.core.clipboard.clipboard_gtk3'
|
|
2189
|
+
- 'kivy.core.clipboard.clipboard_sdl2'
|
|
2190
|
+
when: 'linux'
|
|
2191
|
+
|
|
2098
2192
|
- module-name: 'kivy.graphics.compiler' # checksum: c064234c
|
|
2099
2193
|
implicit-imports:
|
|
2100
2194
|
- depends:
|
|
@@ -2112,13 +2206,17 @@
|
|
|
2112
2206
|
- depends:
|
|
2113
2207
|
- 'kivy.graphics.compiler'
|
|
2114
2208
|
|
|
2115
|
-
- module-name: 'kivymd' # checksum:
|
|
2209
|
+
- module-name: 'kivymd' # checksum: 6d57c0fa
|
|
2116
2210
|
data-files:
|
|
2117
2211
|
- dirs:
|
|
2118
2212
|
- 'fonts'
|
|
2119
2213
|
- 'images'
|
|
2120
2214
|
- 'data'
|
|
2121
2215
|
- 'uix'
|
|
2216
|
+
implicit-imports:
|
|
2217
|
+
- depends:
|
|
2218
|
+
- 'kivymd.icon_definitions'
|
|
2219
|
+
- 'kivymd.uix.*'
|
|
2122
2220
|
|
|
2123
2221
|
- module-name: 'kiwisolver' # checksum: a0fc11a6
|
|
2124
2222
|
dlls:
|
|
@@ -2203,6 +2301,13 @@
|
|
|
2203
2301
|
- patterns:
|
|
2204
2302
|
- 'version.info'
|
|
2205
2303
|
|
|
2304
|
+
- module-name: 'llama_cpp' # checksum: 34acaa89
|
|
2305
|
+
dlls:
|
|
2306
|
+
- from_filenames:
|
|
2307
|
+
relative_path: 'lib'
|
|
2308
|
+
prefixes:
|
|
2309
|
+
- ''
|
|
2310
|
+
|
|
2206
2311
|
- module-name: 'llvmlite.binding.analysis' # checksum: 3083141d
|
|
2207
2312
|
anti-bloat:
|
|
2208
2313
|
- description: 'remove IPython reference'
|
|
@@ -2225,6 +2330,11 @@
|
|
|
2225
2330
|
'IPython': 'ignore'
|
|
2226
2331
|
when: 'not use_ipython'
|
|
2227
2332
|
|
|
2333
|
+
- module-name: 'lttbc' # checksum: d072aa03
|
|
2334
|
+
implicit-imports:
|
|
2335
|
+
- depends:
|
|
2336
|
+
- 'numpy.core.multiarray'
|
|
2337
|
+
|
|
2228
2338
|
- module-name: 'lxml' # checksum: f89961a7
|
|
2229
2339
|
implicit-imports:
|
|
2230
2340
|
- depends:
|
|
@@ -2467,6 +2577,63 @@
|
|
|
2467
2577
|
'_get_cuda_home': 'un-callable'
|
|
2468
2578
|
when: 'not use_setuptools'
|
|
2469
2579
|
|
|
2580
|
+
- module-name: 'mne.fixes' # checksum: dd3b5473
|
|
2581
|
+
anti-bloat:
|
|
2582
|
+
- no-auto-follow:
|
|
2583
|
+
'numba': 'ignore'
|
|
2584
|
+
when: 'not use_numba'
|
|
2585
|
+
|
|
2586
|
+
- module-name: 'mne.io.array.array' # checksum: 6051d6a
|
|
2587
|
+
anti-bloat:
|
|
2588
|
+
- description: 'workaround frame dictionary not being populated'
|
|
2589
|
+
replacements_plain:
|
|
2590
|
+
'super().__init__(': '__import__("inspect").currentframe().f_locals.update(locals());super().__init__('
|
|
2591
|
+
|
|
2592
|
+
- module-name: 'mne.io.curry.curry' # checksum: 6051d6a
|
|
2593
|
+
anti-bloat:
|
|
2594
|
+
- description: 'workaround frame dictionary not being populated'
|
|
2595
|
+
replacements_plain:
|
|
2596
|
+
'super().__init__(': '__import__("inspect").currentframe().f_locals.update(locals());super().__init__('
|
|
2597
|
+
|
|
2598
|
+
- module-name: 'mne.io.edf.edf' # checksum: 6051d6a
|
|
2599
|
+
anti-bloat:
|
|
2600
|
+
- description: 'workaround frame dictionary not being populated'
|
|
2601
|
+
replacements_plain:
|
|
2602
|
+
'super().__init__(': '__import__("inspect").currentframe().f_locals.update(locals());super().__init__('
|
|
2603
|
+
|
|
2604
|
+
- module-name: 'mne.io.egi.egi' # checksum: 6051d6a
|
|
2605
|
+
anti-bloat:
|
|
2606
|
+
- description: 'workaround frame dictionary not being populated'
|
|
2607
|
+
replacements_plain:
|
|
2608
|
+
'super().__init__(': '__import__("inspect").currentframe().f_locals.update(locals());super().__init__('
|
|
2609
|
+
|
|
2610
|
+
- module-name: 'mne.io.egi.egimff' # checksum: 6051d6a
|
|
2611
|
+
anti-bloat:
|
|
2612
|
+
- description: 'workaround frame dictionary not being populated'
|
|
2613
|
+
replacements_plain:
|
|
2614
|
+
'super().__init__(': '__import__("inspect").currentframe().f_locals.update(locals());super().__init__('
|
|
2615
|
+
|
|
2616
|
+
- module-name: 'mne.io.eyelink.eyelink' # checksum: 6051d6a
|
|
2617
|
+
anti-bloat:
|
|
2618
|
+
- description: 'workaround frame dictionary not being populated'
|
|
2619
|
+
replacements_plain:
|
|
2620
|
+
'super().__init__(': '__import__("inspect").currentframe().f_locals.update(locals());super().__init__('
|
|
2621
|
+
|
|
2622
|
+
- module-name: 'mne.io.fiff.raw' # checksum: 6051d6a
|
|
2623
|
+
anti-bloat:
|
|
2624
|
+
- description: 'workaround frame dictionary not being populated'
|
|
2625
|
+
replacements_plain:
|
|
2626
|
+
'super().__init__(': '__import__("inspect").currentframe().f_locals.update(locals());super().__init__('
|
|
2627
|
+
|
|
2628
|
+
- module-name: 'mne.utils._testing' # checksum: 76efa1b7
|
|
2629
|
+
anti-bloat:
|
|
2630
|
+
- description: 'remove pytest reference'
|
|
2631
|
+
replacements_plain:
|
|
2632
|
+
'from unittest import SkipTest': 'SkipTest = None'
|
|
2633
|
+
no-auto-follow:
|
|
2634
|
+
'pytest': 'ignore'
|
|
2635
|
+
when: 'not use_pytest'
|
|
2636
|
+
|
|
2470
2637
|
- module-name: 'mnemonic' # checksum: cfacd704
|
|
2471
2638
|
data-files:
|
|
2472
2639
|
- dirs:
|
|
@@ -2652,6 +2819,12 @@
|
|
|
2652
2819
|
replacements_plain:
|
|
2653
2820
|
'import numexpr.tests': 'raise ImportError'
|
|
2654
2821
|
|
|
2822
|
+
- module-name: 'numexpr.cpuinfo' # checksum: 53d827f7
|
|
2823
|
+
anti-bloat:
|
|
2824
|
+
- description: 'workaround for "is type" test'
|
|
2825
|
+
replacements_plain:
|
|
2826
|
+
'type(attr) is types.MethodType': 'isinstance(attr, types.MethodType)'
|
|
2827
|
+
|
|
2655
2828
|
- module-name: 'numpy' # checksum: d50b5b5e
|
|
2656
2829
|
dlls:
|
|
2657
2830
|
- from_filenames:
|
|
@@ -3221,7 +3394,7 @@
|
|
|
3221
3394
|
- 'libpandaegg'
|
|
3222
3395
|
dest_path: '.'
|
|
3223
3396
|
|
|
3224
|
-
- module-name: 'pandas' # checksum:
|
|
3397
|
+
- module-name: 'pandas' # checksum: 158bd2af
|
|
3225
3398
|
anti-bloat:
|
|
3226
3399
|
- description: 'remove pandas testing framework'
|
|
3227
3400
|
replacements_plain:
|
|
@@ -3229,6 +3402,10 @@
|
|
|
3229
3402
|
'import pandas.testing': ''
|
|
3230
3403
|
'from pandas import testing': 'testing = None'
|
|
3231
3404
|
'from pandas import api, arrays, errors, io, plotting, testing': 'from pandas import api, arrays, errors, io, plotting'
|
|
3405
|
+
- description: 'avoid numba in pandas'
|
|
3406
|
+
no-auto-follow:
|
|
3407
|
+
'pandas.core._numba.extensions': 'no numba acceleration'
|
|
3408
|
+
when: 'not use_numba'
|
|
3232
3409
|
|
|
3233
3410
|
- module-name: 'pandas._libs' # checksum: 582d52b9
|
|
3234
3411
|
implicit-imports:
|
|
@@ -3699,6 +3876,12 @@
|
|
|
3699
3876
|
- description: 'workaround __new__ decorator issue'
|
|
3700
3877
|
append_plain: 'SharedRegistryObject.__new__ = staticmethod(SharedRegistryObject.__new__)'
|
|
3701
3878
|
|
|
3879
|
+
- module-name: 'pip._vendor' # checksum: 49920604
|
|
3880
|
+
anti-bloat:
|
|
3881
|
+
- description: 'allow pydoc inside pip vendored modules'
|
|
3882
|
+
no-auto-follow:
|
|
3883
|
+
'pydoc': 'ignore'
|
|
3884
|
+
|
|
3702
3885
|
- module-name: 'pip._vendor.rich.jupyter' # checksum: b346e77
|
|
3703
3886
|
# See rich.jupyter
|
|
3704
3887
|
anti-bloat:
|
|
@@ -3766,6 +3949,35 @@
|
|
|
3766
3949
|
change_function:
|
|
3767
3950
|
'embedded_data_path': "'(lambda: app_path())'"
|
|
3768
3951
|
|
|
3952
|
+
- module-name: 'playwright' # checksum: 3c59447d
|
|
3953
|
+
data-files:
|
|
3954
|
+
- patterns:
|
|
3955
|
+
- '**/*.json'
|
|
3956
|
+
- '**/*.js'
|
|
3957
|
+
- '**/*.ts'
|
|
3958
|
+
- '**/*.html'
|
|
3959
|
+
- '**/*.css'
|
|
3960
|
+
- '**/*.svg'
|
|
3961
|
+
|
|
3962
|
+
dlls:
|
|
3963
|
+
- from_filenames:
|
|
3964
|
+
relative_path: 'driver'
|
|
3965
|
+
prefixes:
|
|
3966
|
+
- 'node'
|
|
3967
|
+
executable: 'yes'
|
|
3968
|
+
|
|
3969
|
+
- module-name: 'playwright._impl._transport' # checksum: 708d0cf7
|
|
3970
|
+
anti-bloat:
|
|
3971
|
+
- description: 'fix globals.get() usage'
|
|
3972
|
+
replacements_plain:
|
|
3973
|
+
'globals().get("_compiled__")': 'globals().get("__compiled__")'
|
|
3974
|
+
when: 'version("playwright") >= (1, 45, 0)'
|
|
3975
|
+
|
|
3976
|
+
- description: 'support for older versions of playwright'
|
|
3977
|
+
replacements_plain:
|
|
3978
|
+
'if getattr(sys, "frozen", False):': 'if getattr(sys, "frozen", False) or "__compiled__" in globals():'
|
|
3979
|
+
when: 'version("playwright") < (1, 45, 0)'
|
|
3980
|
+
|
|
3769
3981
|
- module-name: 'playwright_stealth' # checksum: 26b9c88c
|
|
3770
3982
|
data-files:
|
|
3771
3983
|
- dirs:
|
|
@@ -3850,6 +4062,11 @@
|
|
|
3850
4062
|
- 'plyer.platforms.android.*'
|
|
3851
4063
|
when: 'android'
|
|
3852
4064
|
|
|
4065
|
+
- module-name: 'polars' # checksum: d072aa03
|
|
4066
|
+
implicit-imports:
|
|
4067
|
+
- depends:
|
|
4068
|
+
- 'numpy.core.multiarray'
|
|
4069
|
+
|
|
3853
4070
|
- module-name: 'polars.lazyframe.frame' # checksum: e9afa6bc
|
|
3854
4071
|
anti-bloat:
|
|
3855
4072
|
- description: 'remove IPython reference'
|
|
@@ -3932,6 +4149,22 @@
|
|
|
3932
4149
|
'from ._common import SUNOS': "'SUNOS = %r' % psutil.SUNOS"
|
|
3933
4150
|
'from ._common import WINDOWS': "'WINDOWS = %r' % psutil.WINDOWS"
|
|
3934
4151
|
|
|
4152
|
+
- module-name: 'py_mini_racer' # checksum: d45d7bdb
|
|
4153
|
+
data-files:
|
|
4154
|
+
- patterns:
|
|
4155
|
+
- 'icudtl.dat'
|
|
4156
|
+
- 'snapshot_blob.bin'
|
|
4157
|
+
|
|
4158
|
+
dlls:
|
|
4159
|
+
- from_filenames:
|
|
4160
|
+
prefixes:
|
|
4161
|
+
- 'mini_racer'
|
|
4162
|
+
when: 'win32'
|
|
4163
|
+
- from_filenames:
|
|
4164
|
+
prefixes:
|
|
4165
|
+
- 'libmini_racer'
|
|
4166
|
+
when: 'not win32'
|
|
4167
|
+
|
|
3935
4168
|
- module-name: 'pyarrow' # checksum: 9da51f71
|
|
3936
4169
|
anti-bloat:
|
|
3937
4170
|
- description: 'remove setuptools usage'
|
|
@@ -4047,7 +4280,7 @@
|
|
|
4047
4280
|
- dirs:
|
|
4048
4281
|
- '.'
|
|
4049
4282
|
|
|
4050
|
-
- module-name: 'pygame' # checksum:
|
|
4283
|
+
- module-name: 'pygame' # checksum: 245d8530
|
|
4051
4284
|
data-files:
|
|
4052
4285
|
- patterns:
|
|
4053
4286
|
- 'freesansbold.ttf'
|
|
@@ -4058,6 +4291,12 @@
|
|
|
4058
4291
|
- 'pygame_icon.bmp'
|
|
4059
4292
|
when: 'not macos'
|
|
4060
4293
|
|
|
4294
|
+
anti-bloat:
|
|
4295
|
+
- no-auto-follow:
|
|
4296
|
+
'pygame.tests': 'ignore'
|
|
4297
|
+
when: 'not use_unittest'
|
|
4298
|
+
- no-auto-follow:
|
|
4299
|
+
'cv2': 'camera functionality via OpenCV-Python (cv2)'
|
|
4061
4300
|
implicit-imports:
|
|
4062
4301
|
- depends:
|
|
4063
4302
|
- 'pygame.*'
|
|
@@ -4405,7 +4644,7 @@
|
|
|
4405
4644
|
- find-dlls-near-module:
|
|
4406
4645
|
- 'shiboken2'
|
|
4407
4646
|
|
|
4408
|
-
- module-name: 'PySide6' # checksum:
|
|
4647
|
+
- module-name: 'PySide6' # checksum: 27df3ea2
|
|
4409
4648
|
implicit-imports:
|
|
4410
4649
|
- post-import-code:
|
|
4411
4650
|
- |
|
|
@@ -4458,6 +4697,12 @@
|
|
|
4458
4697
|
- 'libquick3dspatialaudioplugin'
|
|
4459
4698
|
- 'libqtvkbcomponentsplugin'
|
|
4460
4699
|
- 'libqtvkbsettingsplugin'
|
|
4700
|
+
- 'libqsqlodbc'
|
|
4701
|
+
- 'libpq.5'
|
|
4702
|
+
- 'libffmpegmediaplugin'
|
|
4703
|
+
- 'libqtquickcontrols2fluentwinui3styleimplplugin'
|
|
4704
|
+
- 'libqtquickcontrols2fluentwinui3styleplugin'
|
|
4705
|
+
- 'libqtwebviewquickplugin'
|
|
4461
4706
|
|
|
4462
4707
|
- module-name: 'PySide6.QtCore' # checksum: be0d99ac
|
|
4463
4708
|
implicit-imports:
|
|
@@ -5048,6 +5293,14 @@
|
|
|
5048
5293
|
executable: 'yes'
|
|
5049
5294
|
when: 'win32'
|
|
5050
5295
|
|
|
5296
|
+
- module-name: 'selenium_driverless' # checksum: bdcb049
|
|
5297
|
+
data-files:
|
|
5298
|
+
- dirs:
|
|
5299
|
+
- '.'
|
|
5300
|
+
implicit-imports:
|
|
5301
|
+
- depends:
|
|
5302
|
+
- 'websockets.legacy.*'
|
|
5303
|
+
|
|
5051
5304
|
- module-name: 'selenium_stealth' # checksum: 26b9c88c
|
|
5052
5305
|
data-files:
|
|
5053
5306
|
- dirs:
|
|
@@ -5058,6 +5311,53 @@
|
|
|
5058
5311
|
- depends:
|
|
5059
5312
|
- 'huggingface_hub.repository'
|
|
5060
5313
|
|
|
5314
|
+
- module-name: 'setuptools' # checksum: aafdeb36
|
|
5315
|
+
anti-bloat:
|
|
5316
|
+
- description: 'no runtime expansion of sys.path needed'
|
|
5317
|
+
replacements_plain:
|
|
5318
|
+
'sys.path.extend(': '('
|
|
5319
|
+
when: 'version("setuptools") >= (71,)'
|
|
5320
|
+
- description: 'find setuptools.distutils directly'
|
|
5321
|
+
replacements_plain:
|
|
5322
|
+
'import _distutils_hack.override': 'import setuptools._distutils as distutils; sys.modules["distutils"] = distutils'
|
|
5323
|
+
when: 'python312_or_higher'
|
|
5324
|
+
import-hacks:
|
|
5325
|
+
- global-sys-path:
|
|
5326
|
+
# This package forces vendored packages into "sys.path" and causes
|
|
5327
|
+
# absolute imports from there to be available.
|
|
5328
|
+
- '_vendor'
|
|
5329
|
+
when: 'version("setuptools") >= (71,)'
|
|
5330
|
+
|
|
5331
|
+
- module-name: 'setuptools.command' # checksum: eb17e343
|
|
5332
|
+
anti-bloat:
|
|
5333
|
+
- description: 'find setuptools distutils'
|
|
5334
|
+
replacements_plain:
|
|
5335
|
+
'from distutils.command.bdist import bdist': 'from setuptools._distutils.command.bdist import bdist'
|
|
5336
|
+
when: 'python312_or_higher'
|
|
5337
|
+
|
|
5338
|
+
- module-name: 'setuptools.config.expand' # checksum: cd2c573e
|
|
5339
|
+
anti-bloat:
|
|
5340
|
+
- description: 'find setuptools distutils'
|
|
5341
|
+
replacements_plain:
|
|
5342
|
+
'from distutils.errors import DistutilsOptionError': 'from setuptools._distutils.errors import DistutilsOptionError'
|
|
5343
|
+
when: 'python312_or_higher'
|
|
5344
|
+
|
|
5345
|
+
- module-name: 'setuptools.discovery' # checksum: d8699eb7
|
|
5346
|
+
anti-bloat:
|
|
5347
|
+
- description: 'find setuptools distutils'
|
|
5348
|
+
replacements_plain:
|
|
5349
|
+
'from distutils.util import convert_path': 'from setuptools._distutils.util import convert_path'
|
|
5350
|
+
when: 'python312_or_higher'
|
|
5351
|
+
|
|
5352
|
+
- module-name: 'setuptools.extension' # checksum: a8b782ae
|
|
5353
|
+
anti-bloat:
|
|
5354
|
+
- description: 'find setuptools distutils'
|
|
5355
|
+
replacements_plain:
|
|
5356
|
+
'import distutils.core': 'import setuptools._distutils as distutils; import setuptools._distutils.core'
|
|
5357
|
+
'import distutils.errors': 'import setuptools._distutils.errors'
|
|
5358
|
+
'import distutils.extension': 'import setuptools._distutils.extension'
|
|
5359
|
+
when: 'python312_or_higher'
|
|
5360
|
+
|
|
5061
5361
|
- module-name: 'setuptools.extern' # checksum: 2b2a3793
|
|
5062
5362
|
# TODO: Vendor importers should maybe get their own thing, pkg_resources does
|
|
5063
5363
|
# similar, and we might try and avoid duplication between the two of them on
|
|
@@ -5067,7 +5367,14 @@
|
|
|
5067
5367
|
- 'setuptools._vendor.*'
|
|
5068
5368
|
- 'setuptools._vendor.*.*'
|
|
5069
5369
|
|
|
5070
|
-
- module-name: 'setuptools.
|
|
5370
|
+
- module-name: 'setuptools.logging' # checksum: 70588c58
|
|
5371
|
+
anti-bloat:
|
|
5372
|
+
- description: 'find setuptools distutils'
|
|
5373
|
+
replacements_plain:
|
|
5374
|
+
'import distutils.log': 'import setuptools._distutils as distutils; import setuptools._distutils.log'
|
|
5375
|
+
when: 'python312_or_higher'
|
|
5376
|
+
|
|
5377
|
+
- module-name: 'setuptools.monkey' # checksum: c31be2f0
|
|
5071
5378
|
anti-bloat:
|
|
5072
5379
|
- description: 'remove MSVC patching on non-Windows'
|
|
5073
5380
|
replacements_plain:
|
|
@@ -5077,6 +5384,11 @@
|
|
|
5077
5384
|
# these are done, and try to do it in source code somehow.
|
|
5078
5385
|
'patch_for_msvc_specialized_compiler': "'(lambda: None)'"
|
|
5079
5386
|
when: 'standalone and not win32'
|
|
5387
|
+
- description: 'find setuptools distutils'
|
|
5388
|
+
replacements_plain:
|
|
5389
|
+
'import distutils.filelist': 'import setuptools._distutils as distutils; import setuptools._distutils.filelist'
|
|
5390
|
+
when: 'python312_or_higher'
|
|
5391
|
+
|
|
5080
5392
|
implicit-imports:
|
|
5081
5393
|
- depends:
|
|
5082
5394
|
- '.msvc'
|
|
@@ -6894,6 +7206,16 @@
|
|
|
6894
7206
|
- depends:
|
|
6895
7207
|
- 'tiktoken_ext.*'
|
|
6896
7208
|
|
|
7209
|
+
- module-name: 'time_machine' # checksum: b038bd8
|
|
7210
|
+
anti-bloat:
|
|
7211
|
+
- description: 'remove pytest reference'
|
|
7212
|
+
no-auto-follow:
|
|
7213
|
+
'pytest': 'ignore'
|
|
7214
|
+
when: 'not use_pytest'
|
|
7215
|
+
- description: 'allow unittest'
|
|
7216
|
+
bloat-mode-overrides:
|
|
7217
|
+
'unittest': 'allow'
|
|
7218
|
+
|
|
6897
7219
|
- module-name: 'timm.models.hrnet' # checksum: fdbe0e63
|
|
6898
7220
|
anti-bloat:
|
|
6899
7221
|
- replacements_plain:
|
|
@@ -6923,6 +7245,91 @@
|
|
|
6923
7245
|
- 'libextrafont'
|
|
6924
7246
|
when: 'win32'
|
|
6925
7247
|
|
|
7248
|
+
- module-name: 'tkinterdnd2.TkinterDnD' # checksum: 401c1500
|
|
7249
|
+
data-files:
|
|
7250
|
+
- dirs:
|
|
7251
|
+
- 'tkdnd/win64'
|
|
7252
|
+
when: 'use_tkinter and win32 and version("tkinterdnd2") < (0,4)'
|
|
7253
|
+
- dirs:
|
|
7254
|
+
- 'tkdnd/linux64'
|
|
7255
|
+
when: 'use_tkinter and linux and version("tkinterdnd2") < (0,4)'
|
|
7256
|
+
- dirs:
|
|
7257
|
+
- 'tkdnd/osx64'
|
|
7258
|
+
when: 'use_tkinter and macos and version("tkinterdnd2") < (0,4)'
|
|
7259
|
+
- dirs:
|
|
7260
|
+
- 'tkdnd/win-arm64'
|
|
7261
|
+
when: 'use_tkinter and win32 and arch_arm64 and version("tkinterdnd2") >= (0,4)'
|
|
7262
|
+
- dirs:
|
|
7263
|
+
- 'tkdnd/win-x64'
|
|
7264
|
+
when: 'use_tkinter and win32 and arch_amd64 and version("tkinterdnd2") >= (0,4)'
|
|
7265
|
+
- dirs:
|
|
7266
|
+
- 'tkdnd/win-x86'
|
|
7267
|
+
when: 'use_tkinter and win32 and arch_x86 and version("tkinterdnd2") >= (0,4)'
|
|
7268
|
+
- dirs:
|
|
7269
|
+
- 'tkdnd/linux-arm64'
|
|
7270
|
+
when: 'use_tkinter and linux and arch_arm64 and version("tkinterdnd2") >= (0,4)'
|
|
7271
|
+
- dirs:
|
|
7272
|
+
- 'tkdnd/linux-x64'
|
|
7273
|
+
when: 'use_tkinter and linux and arch_amd64 and version("tkinterdnd2") >= (0,4)'
|
|
7274
|
+
- dirs:
|
|
7275
|
+
- 'tkdnd/osx-arm64'
|
|
7276
|
+
when: 'use_tkinter and macos and arch_arm64 and version("tkinterdnd2") >= (0,4)'
|
|
7277
|
+
- dirs:
|
|
7278
|
+
- 'tkdnd/osx-x64'
|
|
7279
|
+
when: 'use_tkinter and macos and arch_amd64 and version("tkinterdnd2") >= (0,4)'
|
|
7280
|
+
dlls:
|
|
7281
|
+
- from_filenames:
|
|
7282
|
+
relative_path: 'tkdnd/win64'
|
|
7283
|
+
prefixes:
|
|
7284
|
+
- ''
|
|
7285
|
+
when: 'use_tkinter and win32 and version("tkinterdnd2") < (0,4)'
|
|
7286
|
+
- from_filenames:
|
|
7287
|
+
relative_path: 'tkdnd/linux64'
|
|
7288
|
+
prefixes:
|
|
7289
|
+
- ''
|
|
7290
|
+
when: 'use_tkinter and linux and version("tkinterdnd2") < (0,4)'
|
|
7291
|
+
- from_filenames:
|
|
7292
|
+
relative_path: 'tkdnd/osx64'
|
|
7293
|
+
prefixes:
|
|
7294
|
+
- ''
|
|
7295
|
+
when: 'use_tkinter and macos and version("tkinterdnd2") < (0,4)'
|
|
7296
|
+
|
|
7297
|
+
- from_filenames:
|
|
7298
|
+
relative_path: 'tkdnd/win-arm64'
|
|
7299
|
+
prefixes:
|
|
7300
|
+
- ''
|
|
7301
|
+
when: 'use_tkinter and win32 and arch_arm64 and version("tkinterdnd2") >= (0,4)'
|
|
7302
|
+
- from_filenames:
|
|
7303
|
+
relative_path: 'tkdnd/win-x64'
|
|
7304
|
+
prefixes:
|
|
7305
|
+
- ''
|
|
7306
|
+
when: 'use_tkinter and win32 and arch_amd64 and version("tkinterdnd2") >= (0,4)'
|
|
7307
|
+
- from_filenames:
|
|
7308
|
+
relative_path: 'tkdnd/win-x86'
|
|
7309
|
+
prefixes:
|
|
7310
|
+
- ''
|
|
7311
|
+
when: 'use_tkinter and win32 and arch_x86 and version("tkinterdnd2") >= (0,4)'
|
|
7312
|
+
- from_filenames:
|
|
7313
|
+
relative_path: 'tkdnd/linux-arm64'
|
|
7314
|
+
prefixes:
|
|
7315
|
+
- ''
|
|
7316
|
+
when: 'use_tkinter and linux and arch_arm64 and version("tkinterdnd2") >= (0,4)'
|
|
7317
|
+
- from_filenames:
|
|
7318
|
+
relative_path: 'tkdnd/linux-x64'
|
|
7319
|
+
prefixes:
|
|
7320
|
+
- ''
|
|
7321
|
+
when: 'use_tkinter and linux and arch_amd64 and version("tkinterdnd2") >= (0,4)'
|
|
7322
|
+
- from_filenames:
|
|
7323
|
+
relative_path: 'tkdnd/osx-arm64'
|
|
7324
|
+
prefixes:
|
|
7325
|
+
- ''
|
|
7326
|
+
when: 'use_tkinter and macos and arch_arm64 and version("tkinterdnd2") >= (0,4)'
|
|
7327
|
+
- from_filenames:
|
|
7328
|
+
relative_path: 'tkdnd/osx-x64'
|
|
7329
|
+
prefixes:
|
|
7330
|
+
- ''
|
|
7331
|
+
when: 'use_tkinter and macos and arch_amd64 and version("tkinterdnd2") >= (0,4)'
|
|
7332
|
+
|
|
6926
7333
|
- module-name: 'tkinterweb' # checksum: 5de6ded8
|
|
6927
7334
|
data-files:
|
|
6928
7335
|
- dirs:
|
|
@@ -6991,7 +7398,7 @@
|
|
|
6991
7398
|
- include-metadata:
|
|
6992
7399
|
- 'toga-gtk'
|
|
6993
7400
|
|
|
6994
|
-
- module-name: 'toga_winforms' # checksum:
|
|
7401
|
+
- module-name: 'toga_winforms' # checksum: 618ee1e0
|
|
6995
7402
|
data-files:
|
|
6996
7403
|
- dirs:
|
|
6997
7404
|
- 'resources'
|
|
@@ -6999,16 +7406,31 @@
|
|
|
6999
7406
|
- 'toga-winforms'
|
|
7000
7407
|
dlls:
|
|
7001
7408
|
- from_filenames:
|
|
7409
|
+
relative_path: 'libs/WebView2/runtimes/win-arm64/native'
|
|
7410
|
+
prefixes:
|
|
7411
|
+
- 'WebView2Loader'
|
|
7412
|
+
when: 'win32 and arch_arm64'
|
|
7413
|
+
- from_filenames: # older toga_winforms only
|
|
7002
7414
|
relative_path: 'libs/WebView2/arm64'
|
|
7003
7415
|
prefixes:
|
|
7004
7416
|
- 'WebView2Loader'
|
|
7005
7417
|
when: 'win32 and arch_arm64'
|
|
7006
7418
|
- from_filenames:
|
|
7419
|
+
relative_path: 'libs/WebView2/runtimes/win-x86/native'
|
|
7420
|
+
prefixes:
|
|
7421
|
+
- 'WebView2Loader'
|
|
7422
|
+
when: 'win32 and arch_x86'
|
|
7423
|
+
- from_filenames: # older toga_winforms only
|
|
7007
7424
|
relative_path: 'libs/WebView2/x86'
|
|
7008
7425
|
prefixes:
|
|
7009
7426
|
- 'WebView2Loader'
|
|
7010
7427
|
when: 'win32 and arch_x86'
|
|
7011
7428
|
- from_filenames:
|
|
7429
|
+
relative_path: 'libs/WebView2/runtimes/win-x64/native'
|
|
7430
|
+
prefixes:
|
|
7431
|
+
- 'WebView2Loader'
|
|
7432
|
+
when: 'win32 and arch_amd64'
|
|
7433
|
+
- from_filenames: # older toga_winforms only
|
|
7012
7434
|
relative_path: 'libs/WebView2/x64'
|
|
7013
7435
|
prefixes:
|
|
7014
7436
|
- 'WebView2Loader'
|
|
@@ -7031,7 +7453,7 @@
|
|
|
7031
7453
|
'from IPython.core.display import HTML, display': 'raise ImportError'
|
|
7032
7454
|
when: 'not use_ipython'
|
|
7033
7455
|
|
|
7034
|
-
- module-name: 'torch' # checksum:
|
|
7456
|
+
- module-name: 'torch' # checksum: 9ff3b94c
|
|
7035
7457
|
parameters:
|
|
7036
7458
|
- 'name': 'disable-jit'
|
|
7037
7459
|
'values': 'value in ("yes", "no")'
|
|
@@ -7051,14 +7473,20 @@
|
|
|
7051
7473
|
bloat-mode-overrides:
|
|
7052
7474
|
'unittest': 'allow'
|
|
7053
7475
|
when: 'not use_unittest'
|
|
7054
|
-
- description: 'remove setuptools usage
|
|
7476
|
+
- description: 'remove setuptools usage'
|
|
7055
7477
|
no-auto-follow:
|
|
7478
|
+
'torch.utils.cpp_extension': 'ignore'
|
|
7056
7479
|
'triton': 'ignore'
|
|
7057
7480
|
when: 'not use_setuptools'
|
|
7058
7481
|
- description: 'remove numba reference'
|
|
7059
7482
|
no-auto-follow:
|
|
7060
7483
|
'numba': 'ignore'
|
|
7061
7484
|
when: 'not use_numba and standalone'
|
|
7485
|
+
- description: 'remove pytest reference'
|
|
7486
|
+
no-auto-follow:
|
|
7487
|
+
'pytest': 'ignore'
|
|
7488
|
+
'_pytest': 'ignore'
|
|
7489
|
+
when: 'not use_pytest'
|
|
7062
7490
|
|
|
7063
7491
|
options:
|
|
7064
7492
|
checks:
|
|
@@ -7387,7 +7815,7 @@
|
|
|
7387
7815
|
- patterns:
|
|
7388
7816
|
- '*.css'
|
|
7389
7817
|
|
|
7390
|
-
- module-name: 'transformers' # checksum:
|
|
7818
|
+
- module-name: 'transformers' # checksum: c402fbfe
|
|
7391
7819
|
data-files:
|
|
7392
7820
|
- include-metadata:
|
|
7393
7821
|
- 'accelerate'
|
|
@@ -7408,6 +7836,8 @@
|
|
|
7408
7836
|
- 'sentencepiece'
|
|
7409
7837
|
- 'timm'
|
|
7410
7838
|
- 'openai'
|
|
7839
|
+
- 'pygments'
|
|
7840
|
+
- 'soundfile'
|
|
7411
7841
|
|
|
7412
7842
|
anti-bloat:
|
|
7413
7843
|
- description: 'remove IPython reference'
|
|
@@ -7443,6 +7873,13 @@
|
|
|
7443
7873
|
'load_cuda_kernels': 'un-callable'
|
|
7444
7874
|
when: 'not use_setuptools'
|
|
7445
7875
|
|
|
7876
|
+
- module-name: 'transformers.models.deprecated.deta.modeling_deta' # checksum: baab8e6b
|
|
7877
|
+
anti-bloat:
|
|
7878
|
+
- description: 'remove setuptools usage'
|
|
7879
|
+
change_function:
|
|
7880
|
+
'load_cuda_kernels': 'un-callable'
|
|
7881
|
+
when: 'not use_setuptools'
|
|
7882
|
+
|
|
7446
7883
|
- module-name: 'transformers.models.deta.modeling_deta' # checksum: baab8e6b
|
|
7447
7884
|
anti-bloat:
|
|
7448
7885
|
- description: 'remove setuptools usage'
|
|
@@ -7450,6 +7887,13 @@
|
|
|
7450
7887
|
'load_cuda_kernels': 'un-callable'
|
|
7451
7888
|
when: 'not use_setuptools'
|
|
7452
7889
|
|
|
7890
|
+
- module-name: 'transformers.models.grounding_dino.modeling_grounding_dino' # checksum: baab8e6b
|
|
7891
|
+
anti-bloat:
|
|
7892
|
+
- description: 'remove setuptools usage'
|
|
7893
|
+
change_function:
|
|
7894
|
+
'load_cuda_kernels': 'un-callable'
|
|
7895
|
+
when: 'not use_setuptools'
|
|
7896
|
+
|
|
7453
7897
|
- module-name: 'transformers.models.mra.modeling_mra' # checksum: a554c6d
|
|
7454
7898
|
anti-bloat:
|
|
7455
7899
|
- description: 'remove setuptools usage'
|
|
@@ -7459,6 +7903,20 @@
|
|
|
7459
7903
|
'load_cuda_kernels': 'un-callable'
|
|
7460
7904
|
when: 'not use_setuptools'
|
|
7461
7905
|
|
|
7906
|
+
- module-name: 'transformers.models.omdet_turbo.modeling_omdet_turbo' # checksum: baab8e6b
|
|
7907
|
+
anti-bloat:
|
|
7908
|
+
- description: 'remove setuptools usage'
|
|
7909
|
+
change_function:
|
|
7910
|
+
'load_cuda_kernels': 'un-callable'
|
|
7911
|
+
when: 'not use_setuptools'
|
|
7912
|
+
|
|
7913
|
+
- module-name: 'transformers.models.rt_detr.modeling_rt_detr' # checksum: baab8e6b
|
|
7914
|
+
anti-bloat:
|
|
7915
|
+
- description: 'remove setuptools usage'
|
|
7916
|
+
change_function:
|
|
7917
|
+
'load_cuda_kernels': 'un-callable'
|
|
7918
|
+
when: 'not use_setuptools'
|
|
7919
|
+
|
|
7462
7920
|
- module-name: 'transformers.models.rwkv.modeling_rwkv' # checksum: f186b69e
|
|
7463
7921
|
anti-bloat:
|
|
7464
7922
|
- description: 'remove setuptools usage'
|
|
@@ -7486,6 +7944,12 @@
|
|
|
7486
7944
|
replacements_plain:
|
|
7487
7945
|
'transformers_module = direct_transformers_import(Path(__file__).parent)': 'import transformers as transformers_module'
|
|
7488
7946
|
|
|
7947
|
+
- module-name: 'transformers.tokenization_utils_base' # checksum: 836ef550
|
|
7948
|
+
anti-bloat:
|
|
7949
|
+
- description: 'disable transformers warnings'
|
|
7950
|
+
replacements_plain:
|
|
7951
|
+
'warnings.warn(': 'if False: warnings.warn('
|
|
7952
|
+
|
|
7489
7953
|
- module-name: 'transformers.trainer' # checksum: f71d17eb
|
|
7490
7954
|
anti-bloat:
|
|
7491
7955
|
- description: 'remove IPython reference'
|
|
@@ -7639,6 +8103,12 @@
|
|
|
7639
8103
|
'from distributed import Client': 'raise ImportError'
|
|
7640
8104
|
when: 'not use_dask'
|
|
7641
8105
|
|
|
8106
|
+
- module-name: 'tufup.repo' # checksum: 737f453f
|
|
8107
|
+
anti-bloat:
|
|
8108
|
+
- description: 'need to use setuptools'
|
|
8109
|
+
bloat-mode-overrides:
|
|
8110
|
+
'setuptools': 'allow'
|
|
8111
|
+
|
|
7642
8112
|
- module-name: 'twofish' # checksum: c8ae9b1e
|
|
7643
8113
|
implicit-imports:
|
|
7644
8114
|
- depends:
|
|
@@ -7923,6 +8393,12 @@
|
|
|
7923
8393
|
replacements_plain:
|
|
7924
8394
|
'if use_reloader:': 'if False:'
|
|
7925
8395
|
|
|
8396
|
+
- module-name: 'wheel' # checksum: 737f453f
|
|
8397
|
+
anti-bloat:
|
|
8398
|
+
- description: 'need to use setuptools'
|
|
8399
|
+
bloat-mode-overrides:
|
|
8400
|
+
'setuptools': 'allow'
|
|
8401
|
+
|
|
7926
8402
|
- module-name: 'win32com' # checksum: 8d4a0be8
|
|
7927
8403
|
import-hacks:
|
|
7928
8404
|
# This package adds another directory to the search path of itself,
|
|
@@ -7931,17 +8407,23 @@
|
|
|
7931
8407
|
- 'win32comext'
|
|
7932
8408
|
when: 'win32'
|
|
7933
8409
|
|
|
7934
|
-
- module-name: 'win32com.server.register' # checksum:
|
|
8410
|
+
- module-name: 'win32com.server.register' # checksum: ee461289
|
|
7935
8411
|
anti-bloat:
|
|
7936
8412
|
- replacements_plain:
|
|
7937
8413
|
'pythoncom.frozen': '1'
|
|
7938
8414
|
'sys.frozen': 'True'
|
|
8415
|
+
'GetShortPathName(sys.executable)': 'GetShortPathName(sys.argv[0])'
|
|
7939
8416
|
change_function:
|
|
7940
8417
|
'ReExecuteElevated': "'''raise (RuntimeError('Nuitka: Needs to be elevated already, use --windows-uac-admin'))'''"
|
|
7941
8418
|
implicit-imports:
|
|
7942
8419
|
- depends:
|
|
7943
8420
|
- 'win32timezone'
|
|
7944
8421
|
|
|
8422
|
+
- module-name: 'win32file' # checksum: 2531fce0
|
|
8423
|
+
implicit-imports:
|
|
8424
|
+
- depends:
|
|
8425
|
+
- 'win32timezone'
|
|
8426
|
+
|
|
7945
8427
|
- module-name: 'win32ui' # checksum: 2f1beca2
|
|
7946
8428
|
implicit-imports:
|
|
7947
8429
|
- pre-import-code:
|