Nuitka-winsvc 2.5.6__cp311-cp311-win_amd64.whl → 2.6.5__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.5.6.data → Nuitka_winsvc-2.6.5.data}/scripts/nuitka-run.cmd +1 -1
- {Nuitka_winsvc-2.5.6.data → Nuitka_winsvc-2.6.5.data}/scripts/nuitka.cmd +1 -1
- {Nuitka_winsvc-2.5.6.dist-info → Nuitka_winsvc-2.6.5.dist-info}/METADATA +36 -24
- Nuitka_winsvc-2.6.5.dist-info/RECORD +992 -0
- {Nuitka_winsvc-2.5.6.dist-info → Nuitka_winsvc-2.6.5.dist-info}/WHEEL +1 -1
- nuitka/Builtins.py +1 -1
- nuitka/BytecodeCaching.py +15 -4
- nuitka/Bytecodes.py +1 -1
- nuitka/CacheCleanup.py +1 -1
- nuitka/Constants.py +1 -1
- nuitka/Errors.py +1 -1
- nuitka/HardImportRegistry.py +1 -1
- nuitka/MainControl.py +93 -94
- nuitka/ModuleRegistry.py +19 -4
- nuitka/OptionParsing.py +86 -17
- nuitka/Options.py +230 -106
- nuitka/OutputDirectories.py +5 -3
- nuitka/PostProcessing.py +76 -27
- nuitka/Progress.py +1 -1
- nuitka/PythonFlavors.py +24 -3
- nuitka/PythonOperators.py +1 -1
- nuitka/PythonVersions.py +8 -4
- nuitka/Serialization.py +1 -1
- nuitka/SourceCodeReferences.py +1 -1
- nuitka/Tracing.py +2 -1
- nuitka/TreeXML.py +1 -1
- nuitka/Variables.py +1 -1
- nuitka/Version.py +2 -2
- nuitka/__init__.py +1 -1
- nuitka/__main__.py +4 -1
- nuitka/__past__.py +1 -1
- nuitka/build/Backend.scons +44 -66
- nuitka/build/CCompilerVersion.scons +2 -1
- nuitka/build/DataComposerInterface.py +2 -1
- nuitka/build/Offsets.scons +644 -0
- nuitka/build/Onefile.scons +5 -13
- nuitka/build/SconsCaching.py +9 -7
- nuitka/build/SconsCompilerSettings.py +57 -35
- nuitka/build/SconsHacks.py +3 -3
- nuitka/build/SconsInterface.py +86 -58
- nuitka/build/SconsProgress.py +12 -5
- nuitka/build/SconsSpawn.py +3 -3
- nuitka/build/SconsUtils.py +20 -1
- nuitka/build/__init__.py +1 -1
- nuitka/build/include/nuitka/allocator.h +3 -1
- nuitka/build/include/nuitka/builtins.h +1 -1
- nuitka/build/include/nuitka/calling.h +1 -1
- nuitka/build/include/nuitka/checkers.h +1 -1
- nuitka/build/include/nuitka/checksum_tools.h +1 -1
- nuitka/build/include/nuitka/compiled_asyncgen.h +4 -2
- nuitka/build/include/nuitka/compiled_cell.h +1 -1
- nuitka/build/include/nuitka/compiled_coroutine.h +3 -2
- nuitka/build/include/nuitka/compiled_frame.h +6 -13
- nuitka/build/include/nuitka/compiled_function.h +2 -3
- nuitka/build/include/nuitka/compiled_generator.h +3 -2
- nuitka/build/include/nuitka/compiled_method.h +1 -1
- nuitka/build/include/nuitka/constants.h +5 -1
- nuitka/build/include/nuitka/constants_blob.h +1 -1
- nuitka/build/include/nuitka/debug_settings.h +1 -1
- nuitka/build/include/nuitka/environment_variables.h +1 -1
- nuitka/build/include/nuitka/environment_variables_system.h +1 -1
- nuitka/build/include/nuitka/exception_groups.h +1 -1
- nuitka/build/include/nuitka/exceptions.h +2 -2
- nuitka/build/include/nuitka/filesystem_paths.h +4 -1
- nuitka/build/include/nuitka/freelists.h +2 -2
- nuitka/build/include/nuitka/helper/attributes.h +1 -1
- nuitka/build/include/nuitka/helper/boolean.h +1 -1
- nuitka/build/include/nuitka/helper/bytearrays.h +1 -1
- nuitka/build/include/nuitka/helper/bytes.h +1 -1
- nuitka/build/include/nuitka/helper/calling_generated.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_dual_eq.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_dual_ge.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_dual_gt.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_dual_le.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_dual_lt.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_dual_ne.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_eq.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_ge.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_gt.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_le.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_lt.h +1 -1
- nuitka/build/include/nuitka/helper/comparisons_ne.h +1 -1
- nuitka/build/include/nuitka/helper/complex.h +1 -1
- nuitka/build/include/nuitka/helper/dictionaries.h +1 -1
- nuitka/build/include/nuitka/helper/floats.h +1 -1
- nuitka/build/include/nuitka/helper/import_hard.h +1 -1
- nuitka/build/include/nuitka/helper/indexes.h +1 -1
- nuitka/build/include/nuitka/helper/ints.h +1 -1
- nuitka/build/include/nuitka/helper/iterators.h +1 -1
- nuitka/build/include/nuitka/helper/lists.h +1 -1
- nuitka/build/include/nuitka/helper/lists_generated.h +1 -1
- nuitka/build/include/nuitka/helper/mappings.h +1 -1
- nuitka/build/include/nuitka/helper/operations.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_add.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_bitand.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_bitor.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_bitxor.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_divmod.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_dual_add.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_floordiv.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_lshift.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_matmult.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_mod.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_mult.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_olddiv.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_pow.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_rshift.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_sub.h +1 -1
- nuitka/build/include/nuitka/helper/operations_binary_truediv.h +1 -1
- nuitka/build/include/nuitka/helper/operations_builtin_types.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_add.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_bitand.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_bitor.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_bitxor.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_floordiv.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_lshift.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_matmult.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_mod.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_mult.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_olddiv.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_pow.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_rshift.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_sub.h +1 -1
- nuitka/build/include/nuitka/helper/operations_inplace_truediv.h +1 -1
- nuitka/build/include/nuitka/helper/raising.h +1 -1
- nuitka/build/include/nuitka/helper/rangeobjects.h +1 -1
- nuitka/build/include/nuitka/helper/richcomparisons.h +1 -1
- nuitka/build/include/nuitka/helper/sequences.h +1 -1
- nuitka/build/include/nuitka/helper/sets.h +1 -1
- nuitka/build/include/nuitka/helper/slices.h +1 -1
- nuitka/build/include/nuitka/helper/strings.h +1 -1
- nuitka/build/include/nuitka/helper/subscripts.h +1 -1
- nuitka/build/include/nuitka/helper/tuples.h +1 -1
- nuitka/build/include/nuitka/helpers.h +1 -43
- nuitka/build/include/nuitka/importing.h +1 -1
- nuitka/build/include/nuitka/jit_sources.h +1 -1
- nuitka/build/include/nuitka/prelude.h +10 -10
- nuitka/build/include/nuitka/printing.h +1 -1
- nuitka/build/include/nuitka/python_pgo.h +1 -1
- nuitka/build/include/nuitka/safe_string_ops.h +1 -1
- nuitka/build/include/nuitka/threading.h +1 -1
- nuitka/build/include/nuitka/tracing.h +1 -1
- nuitka/build/include/nuitka/type_aliases.h +2 -2
- nuitka/build/include/nuitka/unfreezing.h +1 -1
- nuitka/build/inline_copy/pefile/LICENSE.txt +21 -0
- nuitka/build/inline_copy/pefile/ordlookup/__init__.py +41 -0
- nuitka/build/inline_copy/pefile/ordlookup/oleaut32.py +400 -0
- nuitka/build/inline_copy/pefile/ordlookup/ws2_32.py +120 -0
- nuitka/build/inline_copy/pefile/pefile.py +8034 -0
- nuitka/build/static_src/CompiledAsyncgenType.c +80 -75
- nuitka/build/static_src/CompiledCellType.c +2 -1
- nuitka/build/static_src/CompiledCodeHelpers.c +10 -28
- nuitka/build/static_src/CompiledCoroutineType.c +30 -40
- nuitka/build/static_src/CompiledFrameType.c +63 -5
- nuitka/build/static_src/CompiledFunctionType.c +11 -13
- nuitka/build/static_src/CompiledGeneratorType.c +56 -13
- nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +1 -1
- nuitka/build/static_src/CompiledMethodType.c +2 -1
- nuitka/build/static_src/GenerateHeadersMain.c +30 -0
- nuitka/build/static_src/HelpersAllocator.c +1 -1
- nuitka/build/static_src/HelpersAttributes.c +5 -2
- nuitka/build/static_src/HelpersBuiltin.c +1 -1
- nuitka/build/static_src/HelpersBuiltinTypeMethods.c +1 -1
- nuitka/build/static_src/HelpersBytes.c +1 -1
- nuitka/build/static_src/HelpersCalling.c +1 -1
- nuitka/build/static_src/HelpersCallingGenerated.c +6 -16
- nuitka/build/static_src/HelpersChecksumTools.c +1 -1
- nuitka/build/static_src/HelpersClasses.c +1 -1
- nuitka/build/static_src/HelpersComparisonDualEq.c +1 -1
- nuitka/build/static_src/HelpersComparisonDualGe.c +1 -1
- nuitka/build/static_src/HelpersComparisonDualGt.c +1 -1
- nuitka/build/static_src/HelpersComparisonDualLe.c +1 -1
- nuitka/build/static_src/HelpersComparisonDualLt.c +1 -1
- nuitka/build/static_src/HelpersComparisonDualNe.c +1 -1
- nuitka/build/static_src/HelpersComparisonEq.c +1 -1
- nuitka/build/static_src/HelpersComparisonEqUtils.c +1 -1
- nuitka/build/static_src/HelpersComparisonGe.c +1 -1
- nuitka/build/static_src/HelpersComparisonGt.c +1 -1
- nuitka/build/static_src/HelpersComparisonLe.c +1 -1
- nuitka/build/static_src/HelpersComparisonLt.c +1 -1
- nuitka/build/static_src/HelpersComparisonNe.c +1 -1
- nuitka/build/static_src/HelpersConsole.c +2 -2
- nuitka/build/static_src/HelpersConstantsBlob.c +199 -50
- nuitka/build/static_src/HelpersDeepcopy.c +3 -1
- nuitka/build/static_src/HelpersDictionaries.c +1 -1
- nuitka/build/static_src/HelpersDictionariesGenerated.c +1 -1
- nuitka/build/static_src/HelpersDumpBacktraces.c +1 -1
- nuitka/build/static_src/HelpersEnvironmentVariables.c +1 -1
- nuitka/build/static_src/HelpersEnvironmentVariablesSystem.c +1 -1
- nuitka/build/static_src/HelpersExceptions.c +1 -1
- nuitka/build/static_src/HelpersFiles.c +18 -10
- nuitka/build/static_src/HelpersFilesystemPaths.c +36 -16
- nuitka/build/static_src/HelpersFloats.c +1 -1
- nuitka/build/static_src/HelpersHeapStorage.c +1 -1
- nuitka/build/static_src/HelpersImport.c +1 -1
- nuitka/build/static_src/HelpersImportHard.c +1 -1
- nuitka/build/static_src/HelpersJitSources.c +1 -1
- nuitka/build/static_src/HelpersLists.c +2 -1
- nuitka/build/static_src/HelpersListsGenerated.c +1 -1
- nuitka/build/static_src/HelpersMappings.c +1 -1
- nuitka/build/static_src/HelpersMatching.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryAdd.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryAddUtils.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryBitand.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryBitor.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryBitxor.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryDivmod.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryDivmodUtils.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryDualAdd.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryFloordiv.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryInplaceAdd.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryLshift.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryMatmult.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryMod.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryMult.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryMultUtils.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryOlddiv.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryPow.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryPowUtils.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryRshift.c +1 -1
- nuitka/build/static_src/HelpersOperationBinarySub.c +1 -1
- nuitka/build/static_src/HelpersOperationBinaryTruediv.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceAdd.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceAddUtils.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceBitand.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceBitor.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceBitxor.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceLshift.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceMatmult.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceMod.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceMult.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +1 -1
- nuitka/build/static_src/HelpersOperationInplacePow.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceRshift.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceSub.c +1 -1
- nuitka/build/static_src/HelpersOperationInplaceTruediv.c +1 -1
- nuitka/build/static_src/HelpersProfiling.c +1 -1
- nuitka/build/static_src/HelpersPythonPgo.c +5 -2
- nuitka/build/static_src/HelpersRaising.c +1 -1
- nuitka/build/static_src/HelpersSafeStrings.c +1 -1
- nuitka/build/static_src/HelpersSequences.c +1 -1
- nuitka/build/static_src/HelpersSlices.c +1 -1
- nuitka/build/static_src/HelpersStrings.c +1 -1
- nuitka/build/static_src/HelpersTuples.c +1 -1
- nuitka/build/static_src/HelpersTypes.c +5 -5
- nuitka/build/static_src/InspectPatcher.c +2 -1
- nuitka/build/static_src/MainProgram.c +30 -6
- nuitka/build/static_src/MetaPathBasedLoader.c +19 -11
- nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c +1 -1
- nuitka/build/static_src/MetaPathBasedLoaderResourceReader.c +1 -1
- nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +17 -4
- nuitka/build/static_src/OnefileBootstrap.c +6 -4
- nuitka/build/static_src/OnefileSplashScreen.cpp +1 -1
- nuitka/code_generation/AsyncgenCodes.py +5 -6
- nuitka/code_generation/AttributeCodes.py +1 -1
- nuitka/code_generation/BinaryOperationHelperDefinitions.py +1 -1
- nuitka/code_generation/BranchCodes.py +1 -1
- nuitka/code_generation/BuiltinCodes.py +15 -5
- nuitka/code_generation/CallCodes.py +1 -1
- nuitka/code_generation/ClassCodes.py +1 -1
- nuitka/code_generation/CodeGeneration.py +23 -17
- nuitka/code_generation/CodeHelperSelection.py +1 -1
- nuitka/code_generation/CodeHelpers.py +1 -1
- nuitka/code_generation/CodeObjectCodes.py +19 -2
- nuitka/code_generation/ComparisonCodes.py +1 -1
- nuitka/code_generation/ComparisonHelperDefinitions.py +1 -1
- nuitka/code_generation/ConditionalCodes.py +1 -1
- nuitka/code_generation/ConstantCodes.py +1 -1
- nuitka/code_generation/Contexts.py +52 -39
- nuitka/code_generation/CoroutineCodes.py +4 -5
- nuitka/code_generation/CtypesCodes.py +1 -1
- nuitka/code_generation/DictCodes.py +1 -1
- nuitka/code_generation/Emission.py +1 -1
- nuitka/code_generation/ErrorCodes.py +1 -1
- nuitka/code_generation/EvalCodes.py +1 -1
- nuitka/code_generation/ExceptionCodes.py +1 -1
- nuitka/code_generation/ExpressionCTypeSelectionHelpers.py +1 -1
- nuitka/code_generation/ExpressionCodes.py +1 -1
- nuitka/code_generation/FrameCodes.py +26 -17
- nuitka/code_generation/FunctionCodes.py +9 -15
- nuitka/code_generation/GeneratorCodes.py +9 -10
- nuitka/code_generation/GlobalConstants.py +6 -4
- nuitka/code_generation/GlobalsLocalsCodes.py +1 -1
- nuitka/code_generation/IdCodes.py +1 -1
- nuitka/code_generation/ImportCodes.py +1 -1
- nuitka/code_generation/Indentation.py +1 -1
- nuitka/code_generation/IndexCodes.py +1 -1
- nuitka/code_generation/InjectCCodes.py +1 -1
- nuitka/code_generation/IntegerCodes.py +1 -1
- nuitka/code_generation/IteratorCodes.py +1 -1
- nuitka/code_generation/JitCodes.py +1 -1
- nuitka/code_generation/LabelCodes.py +1 -1
- nuitka/code_generation/LineNumberCodes.py +1 -1
- nuitka/code_generation/ListCodes.py +1 -1
- nuitka/code_generation/LoaderCodes.py +1 -1
- nuitka/code_generation/LocalsDictCodes.py +1 -1
- nuitka/code_generation/LoopCodes.py +1 -1
- nuitka/code_generation/MatchCodes.py +1 -1
- nuitka/code_generation/ModuleCodes.py +31 -4
- nuitka/code_generation/Namify.py +4 -1
- nuitka/code_generation/NetworkxCodes.py +1 -1
- nuitka/code_generation/OperationCodes.py +1 -1
- nuitka/code_generation/PackageResourceCodes.py +4 -10
- nuitka/code_generation/PrintCodes.py +1 -1
- nuitka/code_generation/PythonAPICodes.py +1 -1
- nuitka/code_generation/RaisingCodes.py +1 -1
- nuitka/code_generation/Reports.py +1 -1
- nuitka/code_generation/ReturnCodes.py +1 -1
- nuitka/code_generation/SetCodes.py +1 -1
- nuitka/code_generation/SliceCodes.py +1 -1
- nuitka/code_generation/StringCodes.py +1 -1
- nuitka/code_generation/SubscriptCodes.py +1 -1
- nuitka/code_generation/TensorflowCodes.py +1 -1
- nuitka/code_generation/TryCodes.py +1 -1
- nuitka/code_generation/TupleCodes.py +1 -1
- nuitka/code_generation/TypeAliasCodes.py +4 -3
- nuitka/code_generation/VariableCodes.py +1 -1
- nuitka/code_generation/VariableDeclarations.py +1 -1
- nuitka/code_generation/YieldCodes.py +1 -1
- nuitka/code_generation/__init__.py +1 -1
- nuitka/code_generation/c_types/CTypeBases.py +1 -1
- nuitka/code_generation/c_types/CTypeBooleans.py +1 -1
- nuitka/code_generation/c_types/CTypeCFloats.py +1 -1
- nuitka/code_generation/c_types/CTypeCLongs.py +1 -1
- nuitka/code_generation/c_types/CTypeModuleDictVariables.py +1 -1
- nuitka/code_generation/c_types/CTypeNuitkaBooleans.py +1 -1
- nuitka/code_generation/c_types/CTypeNuitkaInts.py +1 -1
- nuitka/code_generation/c_types/CTypeNuitkaVoids.py +1 -1
- nuitka/code_generation/c_types/CTypePyObjectPointers.py +1 -1
- nuitka/code_generation/c_types/CTypeVoids.py +1 -1
- nuitka/code_generation/c_types/__init__.py +1 -1
- nuitka/code_generation/templates/CodeTemplatesAsyncgens.py +1 -1
- nuitka/code_generation/templates/CodeTemplatesConstants.py +2 -2
- nuitka/code_generation/templates/CodeTemplatesCoroutines.py +1 -1
- nuitka/code_generation/templates/CodeTemplatesExceptions.py +1 -1
- nuitka/code_generation/templates/CodeTemplatesFrames.py +21 -25
- nuitka/code_generation/templates/CodeTemplatesFunction.py +1 -1
- nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py +3 -3
- nuitka/code_generation/templates/CodeTemplatesIterators.py +1 -1
- nuitka/code_generation/templates/CodeTemplatesLoader.py +26 -3
- nuitka/code_generation/templates/CodeTemplatesModules.py +21 -8
- nuitka/code_generation/templates/CodeTemplatesVariables.py +1 -1
- nuitka/code_generation/templates/TemplateDebugWrapper.py +1 -1
- nuitka/code_generation/templates/__init__.py +1 -1
- nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2 +1 -1
- nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2 +1 -1
- nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2 +1 -1
- nuitka/code_generation/templates_c/CodeTemplateCallsPositionalMethodDescr.c.j2 +21 -1
- nuitka/code_generation/templates_c/CodeTemplateMakeListHinted.c.j2 +1 -1
- nuitka/code_generation/templates_c/CodeTemplateMakeListSmall.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperBuiltinMethodOperation.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperImportHard.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperLongTools.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperObjectTools.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationBinaryDual.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparison.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonDual.c.j2 +1 -1
- 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 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonLong.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonStr.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonTuple.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonUnicode.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsBytes.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsCommon.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsFloat.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsInt.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsList.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsLong.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsSet.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsStr.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsTuple.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsUnicode.c.j2 +1 -1
- nuitka/containers/Namedtuples.py +1 -1
- nuitka/containers/OrderedSetsFallback.py +1 -1
- nuitka/containers/__init__.py +1 -1
- nuitka/distutils/Build.py +1 -1
- nuitka/distutils/DistutilCommands.py +2 -2
- nuitka/distutils/__init__.py +1 -1
- nuitka/finalizations/Finalization.py +1 -1
- nuitka/finalizations/FinalizeMarkups.py +1 -1
- nuitka/finalizations/__init__.py +1 -1
- nuitka/freezer/DependsExe.py +2 -1
- nuitka/freezer/DllDependenciesCommon.py +1 -1
- nuitka/freezer/DllDependenciesMacOS.py +8 -3
- nuitka/freezer/DllDependenciesPosix.py +23 -4
- nuitka/freezer/DllDependenciesWin32.py +112 -25
- nuitka/freezer/ImportDetection.py +1 -1
- nuitka/freezer/IncludedDataFiles.py +2 -2
- nuitka/freezer/IncludedEntryPoints.py +9 -1
- nuitka/freezer/Onefile.py +13 -15
- nuitka/freezer/Standalone.py +16 -4
- nuitka/freezer/__init__.py +1 -1
- nuitka/importing/IgnoreListing.py +1 -1
- nuitka/importing/ImportCache.py +1 -1
- nuitka/importing/ImportResolving.py +1 -1
- nuitka/importing/Importing.py +6 -4
- nuitka/importing/PreloadedPackages.py +1 -1
- nuitka/importing/Recursion.py +37 -12
- nuitka/importing/StandardLibrary.py +1 -1
- nuitka/importing/__init__.py +1 -1
- nuitka/nodes/AsyncgenNodes.py +1 -1
- nuitka/nodes/AttributeLookupNodes.py +1 -1
- nuitka/nodes/AttributeNodes.py +1 -1
- nuitka/nodes/AttributeNodesGenerated.py +1 -1
- nuitka/nodes/BuiltinAllNodes.py +1 -1
- nuitka/nodes/BuiltinAnyNodes.py +1 -1
- nuitka/nodes/BuiltinComplexNodes.py +1 -1
- nuitka/nodes/BuiltinDecodingNodes.py +1 -1
- nuitka/nodes/BuiltinDecoratorNodes.py +1 -1
- nuitka/nodes/BuiltinDictNodes.py +1 -1
- nuitka/nodes/BuiltinFormatNodes.py +1 -1
- nuitka/nodes/BuiltinHashNodes.py +1 -1
- nuitka/nodes/BuiltinInputNodes.py +1 -1
- nuitka/nodes/BuiltinIntegerNodes.py +1 -1
- nuitka/nodes/BuiltinIteratorNodes.py +1 -1
- nuitka/nodes/BuiltinLenNodes.py +1 -1
- nuitka/nodes/BuiltinNextNodes.py +1 -1
- nuitka/nodes/BuiltinOpenNodes.py +1 -1
- nuitka/nodes/BuiltinOperationNodeBasesGenerated.py +1 -1
- nuitka/nodes/BuiltinRangeNodes.py +1 -1
- nuitka/nodes/BuiltinRefNodes.py +1 -1
- nuitka/nodes/BuiltinSumNodes.py +1 -1
- nuitka/nodes/BuiltinTypeNodes.py +1 -1
- nuitka/nodes/BuiltinVarsNodes.py +1 -1
- nuitka/nodes/BytesNodes.py +1 -1
- nuitka/nodes/CallNodes.py +1 -1
- nuitka/nodes/Checkers.py +1 -1
- nuitka/nodes/ChildrenHavingMixins.py +240 -16
- nuitka/nodes/ClassNodes.py +1 -1
- nuitka/nodes/CodeObjectSpecs.py +4 -4
- nuitka/nodes/ComparisonNodes.py +1 -1
- nuitka/nodes/ConditionalNodes.py +1 -1
- nuitka/nodes/ConstantRefNodes.py +1 -1
- nuitka/nodes/ContainerMakingNodes.py +1 -1
- nuitka/nodes/ContainerOperationNodes.py +1 -1
- nuitka/nodes/CoroutineNodes.py +1 -1
- nuitka/nodes/CtypesNodes.py +1 -1
- nuitka/nodes/DictionaryNodes.py +1 -1
- nuitka/nodes/ExceptionNodes.py +1 -1
- nuitka/nodes/ExecEvalNodes.py +1 -1
- nuitka/nodes/ExpressionBases.py +1 -1
- nuitka/nodes/ExpressionBasesGenerated.py +1 -1
- nuitka/nodes/ExpressionShapeMixins.py +1 -1
- nuitka/nodes/FrameNodes.py +19 -7
- nuitka/nodes/FunctionAttributeNodes.py +1 -1
- nuitka/nodes/FunctionNodes.py +8 -1
- nuitka/nodes/FutureSpecs.py +34 -2
- nuitka/nodes/GeneratorNodes.py +1 -1
- nuitka/nodes/GlobalsLocalsNodes.py +1 -1
- nuitka/nodes/HardImportNodesGenerated.py +140 -56
- nuitka/nodes/ImportHardNodes.py +1 -1
- nuitka/nodes/ImportNodes.py +1 -1
- nuitka/nodes/IndicatorMixins.py +1 -1
- nuitka/nodes/InjectCNodes.py +1 -1
- nuitka/nodes/IterationHandles.py +1 -1
- nuitka/nodes/KeyValuePairNodes.py +1 -1
- nuitka/nodes/ListOperationNodes.py +1 -1
- nuitka/nodes/LocalsDictNodes.py +1 -1
- nuitka/nodes/LocalsScopes.py +1 -1
- nuitka/nodes/LoopNodes.py +1 -1
- nuitka/nodes/MatchNodes.py +1 -1
- nuitka/nodes/ModuleAttributeNodes.py +1 -1
- nuitka/nodes/ModuleNodes.py +23 -9
- nuitka/nodes/NetworkxNodes.py +1 -1
- nuitka/nodes/NodeBases.py +1 -1
- nuitka/nodes/NodeMakingHelpers.py +1 -1
- nuitka/nodes/NodeMetaClasses.py +1 -1
- nuitka/nodes/OperatorNodes.py +1 -1
- nuitka/nodes/OperatorNodesUnary.py +1 -1
- nuitka/nodes/OsSysNodes.py +1 -1
- nuitka/nodes/OutlineNodes.py +1 -1
- nuitka/nodes/PackageMetadataNodes.py +4 -2
- nuitka/nodes/PackageResourceNodes.py +42 -7
- nuitka/nodes/PrintNodes.py +1 -1
- nuitka/nodes/ReturnNodes.py +1 -1
- nuitka/nodes/SideEffectNodes.py +1 -1
- nuitka/nodes/SliceNodes.py +1 -1
- nuitka/nodes/StatementBasesGenerated.py +1 -1
- nuitka/nodes/StatementNodes.py +1 -1
- nuitka/nodes/StrNodes.py +1 -1
- nuitka/nodes/StringConcatenationNodes.py +1 -1
- nuitka/nodes/SubscriptNodes.py +1 -1
- nuitka/nodes/TensorflowNodes.py +1 -1
- nuitka/nodes/TryNodes.py +1 -1
- nuitka/nodes/TypeMatchNodes.py +1 -1
- nuitka/nodes/TypeNodes.py +4 -4
- nuitka/nodes/VariableAssignNodes.py +1 -1
- nuitka/nodes/VariableDelNodes.py +1 -1
- nuitka/nodes/VariableNameNodes.py +1 -1
- nuitka/nodes/VariableRefNodes.py +1 -1
- nuitka/nodes/VariableReleaseNodes.py +1 -1
- nuitka/nodes/YieldNodes.py +1 -1
- nuitka/nodes/__init__.py +1 -1
- nuitka/nodes/shapes/BuiltinTypeShapes.py +1 -1
- nuitka/nodes/shapes/ControlFlowDescriptions.py +1 -1
- nuitka/nodes/shapes/IteratorShapes.py +1 -1
- nuitka/nodes/shapes/ShapeMixins.py +1 -1
- nuitka/nodes/shapes/StandardShapes.py +1 -1
- nuitka/nodes/shapes/__init__.py +1 -1
- nuitka/optimizations/BytecodeDemotion.py +1 -1
- nuitka/optimizations/FunctionInlining.py +1 -1
- nuitka/optimizations/Graphs.py +1 -1
- nuitka/optimizations/Optimization.py +1 -1
- nuitka/optimizations/OptimizeBuiltinCalls.py +1 -1
- nuitka/optimizations/Tags.py +1 -1
- nuitka/optimizations/TraceCollections.py +1 -1
- nuitka/optimizations/ValueTraces.py +1 -1
- nuitka/optimizations/__init__.py +1 -1
- nuitka/pgo/PGO.py +1 -1
- nuitka/pgo/__init__.py +1 -1
- nuitka/plugins/PluginBase.py +91 -16
- nuitka/plugins/Plugins.py +58 -15
- nuitka/plugins/YamlPluginBase.py +1 -1
- nuitka/plugins/__init__.py +1 -1
- nuitka/plugins/standard/AntiBloatPlugin.py +138 -66
- nuitka/plugins/standard/ConsiderPyLintAnnotationsPlugin.py +2 -1
- nuitka/plugins/standard/DataFilesPlugin.py +2 -2
- nuitka/plugins/standard/DelvewheelPlugin.py +2 -1
- nuitka/plugins/standard/DillPlugin/DillPlugin.c +1 -1
- nuitka/plugins/standard/DillPlugin/dill-postLoad.py +1 -1
- nuitka/plugins/standard/DillPlugin.py +2 -2
- nuitka/plugins/standard/DllFilesPlugin.py +2 -12
- nuitka/plugins/standard/EnumPlugin.py +2 -2
- nuitka/plugins/standard/EventletPlugin.py +2 -1
- nuitka/plugins/standard/GeventPlugin.py +2 -1
- nuitka/plugins/standard/GiPlugin.py +2 -1
- nuitka/plugins/standard/GlfwPlugin.py +2 -1
- nuitka/plugins/standard/ImplicitImports.py +7 -6
- nuitka/plugins/standard/KivyPlugin.py +2 -1
- nuitka/plugins/standard/MatplotlibPlugin.py +2 -1
- nuitka/plugins/standard/MultiprocessingPlugin.py +2 -1
- nuitka/plugins/standard/NumpyPlugin.py +2 -1
- nuitka/plugins/standard/OptionsNannyPlugin.py +2 -2
- nuitka/plugins/standard/PbrPlugin.py +2 -2
- nuitka/plugins/standard/PkgResourcesPlugin.py +2 -1
- nuitka/plugins/standard/PlaywrightPlugin.py +10 -15
- nuitka/plugins/standard/PmwPlugin.py +2 -1
- nuitka/plugins/standard/PySidePyQtPlugin.py +25 -15
- nuitka/plugins/standard/PywebViewPlugin.py +2 -1
- nuitka/plugins/standard/SpacyPlugin.py +2 -1
- nuitka/plugins/standard/TensorflowPlugin.py +2 -1
- nuitka/plugins/standard/TkinterPlugin.py +15 -2
- nuitka/plugins/standard/TorchPlugin.py +2 -1
- nuitka/plugins/standard/TransformersPlugin.py +2 -2
- nuitka/plugins/standard/TrioPlugin.py +2 -1
- nuitka/plugins/standard/UpxPlugin.py +2 -1
- nuitka/plugins/standard/__init__.py +1 -1
- nuitka/plugins/standard/standard.nuitka-package.config.yml +257 -89
- nuitka/reports/CompilationReportReader.py +5 -1
- nuitka/reports/LicenseReport.rst.j2 +1 -1
- nuitka/reports/Reports.py +30 -3
- nuitka/reports/__init__.py +1 -1
- nuitka/specs/BuiltinBytesOperationSpecs.py +1 -1
- nuitka/specs/BuiltinDictOperationSpecs.py +1 -1
- nuitka/specs/BuiltinListOperationSpecs.py +1 -1
- nuitka/specs/BuiltinParameterSpecs.py +1 -1
- nuitka/specs/BuiltinStrOperationSpecs.py +1 -1
- nuitka/specs/BuiltinTypeOperationSpecs.py +1 -1
- nuitka/specs/BuiltinUnicodeOperationSpecs.py +1 -1
- nuitka/specs/HardImportSpecs.py +10 -2
- nuitka/specs/ParameterSpecs.py +17 -2
- nuitka/specs/__init__.py +1 -1
- nuitka/tools/Basics.py +1 -1
- nuitka/tools/__init__.py +1 -1
- nuitka/tools/commercial/__init__.py +1 -1
- nuitka/tools/data_composer/DataComposer.py +125 -1
- nuitka/tools/data_composer/__init__.py +1 -1
- nuitka/tools/data_composer/__main__.py +1 -1
- nuitka/tools/environments/CreateEnvironment.py +1 -1
- nuitka/tools/environments/Virtualenv.py +1 -1
- nuitka/tools/environments/__init__.py +1 -1
- nuitka/tools/general/__init__.py +1 -1
- nuitka/tools/general/dll_report/__init__.py +1 -1
- nuitka/tools/general/dll_report/__main__.py +1 -1
- nuitka/tools/general/find_module/FindModuleCode.py +6 -3
- nuitka/tools/general/find_module/__init__.py +1 -1
- nuitka/tools/general/generate_header/GenerateHeader.py +73 -0
- nuitka/tools/general/generate_header/__init__.py +19 -0
- nuitka/tools/onefile_compressor/OnefileCompressor.py +1 -1
- nuitka/tools/onefile_compressor/__init__.py +1 -1
- nuitka/tools/onefile_compressor/__main__.py +1 -1
- nuitka/tools/podman/Podman.py +1 -1
- nuitka/tools/podman/__init__.py +1 -1
- nuitka/tools/podman/__main__.py +4 -2
- nuitka/tools/profiler/__init__.py +1 -1
- nuitka/tools/profiler/__main__.py +1 -1
- nuitka/tools/scanning/DisplayPackageDLLs.py +42 -20
- nuitka/tools/scanning/DisplayPackageData.py +1 -1
- nuitka/tools/scanning/__init__.py +1 -1
- nuitka/tools/specialize/CTypeDescriptions.py +1 -1
- nuitka/tools/specialize/Common.py +1 -1
- nuitka/tools/specialize/SpecializeC.py +1 -1
- nuitka/tools/specialize/SpecializePython.py +7 -3
- nuitka/tools/specialize/__init__.py +1 -1
- nuitka/tools/testing/Common.py +140 -19
- nuitka/tools/testing/Constructs.py +1 -1
- nuitka/tools/testing/OutputComparison.py +5 -4
- nuitka/tools/testing/Pythons.py +1 -1
- nuitka/tools/testing/RuntimeTracing.py +1 -1
- nuitka/tools/testing/SearchModes.py +1 -1
- nuitka/tools/testing/Valgrind.py +1 -1
- nuitka/tools/testing/__init__.py +1 -1
- nuitka/tools/testing/check_reference_counts/__init__.py +1 -1
- nuitka/tools/testing/check_reference_counts/__main__.py +6 -2
- nuitka/tools/testing/compare_with_cpython/__init__.py +1 -1
- nuitka/tools/testing/compare_with_cpython/__main__.py +51 -14
- nuitka/tools/testing/find_sxs_modules/__init__.py +1 -1
- nuitka/tools/testing/find_sxs_modules/__main__.py +1 -1
- nuitka/tools/testing/measure_construct_performance/__init__.py +1 -1
- nuitka/tools/testing/measure_construct_performance/__main__.py +1 -1
- nuitka/tools/testing/run_nuitka_tests/__init__.py +1 -1
- nuitka/tools/testing/run_nuitka_tests/__main__.py +1 -1
- nuitka/tools/watch/AutoStage.py +1 -1
- nuitka/tools/watch/Common.py +55 -0
- nuitka/tools/watch/Conda.py +125 -0
- nuitka/tools/watch/GitHub.py +1 -1
- nuitka/tools/watch/Pacman.py +73 -0
- nuitka/tools/watch/Pipenv.py +143 -0
- nuitka/tools/watch/__init__.py +1 -1
- nuitka/tools/watch/__main__.py +124 -266
- nuitka/tree/Building.py +5 -7
- nuitka/tree/ComplexCallHelperFunctions.py +1 -1
- nuitka/tree/Extractions.py +1 -1
- nuitka/tree/FutureSpecState.py +71 -0
- nuitka/tree/InternalModule.py +1 -1
- nuitka/tree/Operations.py +1 -1
- nuitka/tree/ReformulationAssertStatements.py +1 -1
- nuitka/tree/ReformulationAssignmentStatements.py +3 -3
- nuitka/tree/ReformulationBooleanExpressions.py +1 -1
- nuitka/tree/ReformulationCallExpressions.py +1 -1
- nuitka/tree/ReformulationClasses.py +1 -1
- nuitka/tree/ReformulationClasses3.py +1 -1
- nuitka/tree/ReformulationComparisonExpressions.py +1 -1
- nuitka/tree/ReformulationContractionExpressions.py +3 -1
- nuitka/tree/ReformulationDictionaryCreation.py +3 -3
- nuitka/tree/ReformulationExecStatements.py +1 -1
- nuitka/tree/ReformulationForLoopStatements.py +1 -1
- nuitka/tree/ReformulationFunctionStatements.py +2 -2
- nuitka/tree/ReformulationImportStatements.py +5 -52
- nuitka/tree/ReformulationLambdaExpressions.py +2 -1
- nuitka/tree/ReformulationMatchStatements.py +1 -1
- nuitka/tree/ReformulationMultidist.py +2 -2
- nuitka/tree/ReformulationNamespacePackages.py +28 -6
- nuitka/tree/ReformulationPrintStatements.py +1 -1
- nuitka/tree/ReformulationSequenceCreation.py +1 -1
- nuitka/tree/ReformulationSubscriptExpressions.py +1 -1
- nuitka/tree/ReformulationTryExceptStatements.py +1 -1
- nuitka/tree/ReformulationTryFinallyStatements.py +1 -1
- nuitka/tree/ReformulationWhileLoopStatements.py +1 -1
- nuitka/tree/ReformulationWithStatements.py +1 -1
- nuitka/tree/ReformulationYieldExpressions.py +1 -1
- nuitka/tree/SourceHandling.py +57 -18
- nuitka/tree/SyntaxErrors.py +1 -1
- nuitka/tree/TreeHelpers.py +24 -10
- nuitka/tree/VariableClosure.py +1 -1
- nuitka/tree/__init__.py +1 -1
- nuitka/utils/AppDirs.py +5 -2
- nuitka/utils/CStrings.py +1 -1
- nuitka/utils/CommandLineOptions.py +2 -2
- nuitka/utils/Distributions.py +197 -15
- nuitka/utils/Download.py +14 -6
- nuitka/utils/Execution.py +43 -14
- nuitka/utils/FileOperations.py +43 -10
- nuitka/utils/Hashing.py +1 -1
- nuitka/utils/Images.py +8 -2
- nuitka/utils/Importing.py +1 -1
- nuitka/utils/InlineCopies.py +1 -1
- nuitka/utils/InstalledPythons.py +1 -1
- nuitka/utils/InstanceCounters.py +1 -1
- nuitka/utils/Jinja2.py +1 -1
- nuitka/utils/Json.py +2 -2
- nuitka/utils/MacOSApp.py +4 -3
- nuitka/utils/MemoryUsage.py +1 -1
- nuitka/utils/ModuleNames.py +1 -1
- nuitka/utils/PackageResources.py +1 -1
- nuitka/utils/ReExecute.py +1 -1
- nuitka/utils/Rest.py +1 -1
- nuitka/utils/SharedLibraries.py +52 -7
- nuitka/utils/Shebang.py +1 -1
- nuitka/utils/Signing.py +2 -4
- nuitka/utils/SlotMetaClasses.py +1 -1
- nuitka/utils/StaticLibraries.py +29 -1
- nuitka/utils/ThreadedExecutor.py +1 -1
- nuitka/utils/Timing.py +1 -1
- nuitka/utils/Utils.py +1 -1
- nuitka/utils/WindowsFileUsage.py +1 -1
- nuitka/utils/WindowsResources.py +3 -1
- nuitka/utils/Yaml.py +1 -1
- nuitka/utils/__init__.py +1 -1
- Nuitka_winsvc-2.5.6.dist-info/RECORD +0 -978
- {Nuitka_winsvc-2.5.6.dist-info → Nuitka_winsvc-2.6.5.dist-info}/LICENSE.txt +0 -0
- {Nuitka_winsvc-2.5.6.dist-info → Nuitka_winsvc-2.6.5.dist-info}/entry_points.txt +0 -0
- {Nuitka_winsvc-2.5.6.dist-info → Nuitka_winsvc-2.6.5.dist-info}/top_level.txt +0 -0
|
@@ -35,6 +35,12 @@
|
|
|
35
35
|
- depends:
|
|
36
36
|
- 'ruamel.yaml.error'
|
|
37
37
|
|
|
38
|
+
- module-name: '_soundfile_data' # checksum: be356cb6
|
|
39
|
+
dlls:
|
|
40
|
+
- from_filenames:
|
|
41
|
+
prefixes:
|
|
42
|
+
- 'libsndfile'
|
|
43
|
+
|
|
38
44
|
- module-name: '_yaml' # checksum: 35d3c787
|
|
39
45
|
implicit-imports:
|
|
40
46
|
- depends:
|
|
@@ -171,7 +177,11 @@
|
|
|
171
177
|
'_get_win_folder_with_pywin32': 'un-callable'
|
|
172
178
|
when: 'not use_pywin32 or not win32'
|
|
173
179
|
|
|
174
|
-
- module-name: 'apscheduler' # checksum:
|
|
180
|
+
- module-name: 'apscheduler' # checksum: 5005e940
|
|
181
|
+
data-files:
|
|
182
|
+
- include-metadata:
|
|
183
|
+
- 'apscheduler'
|
|
184
|
+
|
|
175
185
|
implicit-imports:
|
|
176
186
|
- depends:
|
|
177
187
|
- 'apscheduler.triggers.*'
|
|
@@ -187,10 +197,10 @@
|
|
|
187
197
|
- depends:
|
|
188
198
|
- 'apt_pkg'
|
|
189
199
|
|
|
190
|
-
- module-name: 'arcade' # checksum:
|
|
200
|
+
- module-name: 'arcade' # checksum: 25cf95c9
|
|
191
201
|
data-files:
|
|
192
202
|
- dirs:
|
|
193
|
-
- 'resources
|
|
203
|
+
- 'resources'
|
|
194
204
|
- patterns:
|
|
195
205
|
- 'VERSION'
|
|
196
206
|
anti-bloat:
|
|
@@ -495,18 +505,19 @@
|
|
|
495
505
|
'is_triton_available()': 'False'
|
|
496
506
|
when: 'not use_setuptools'
|
|
497
507
|
|
|
498
|
-
- module-name: 'black' # checksum:
|
|
499
|
-
implicit-imports:
|
|
500
|
-
- depends:
|
|
501
|
-
- '30fcd23745efe32ce681__mypyc'
|
|
502
|
-
|
|
503
|
-
- module-name: 'black.handle_ipynb_magics' # checksum: 7d07a2d1
|
|
508
|
+
- module-name: 'black' # checksum: 7d07a2d1
|
|
504
509
|
anti-bloat:
|
|
505
510
|
- description: 'remove IPython reference'
|
|
506
511
|
no-auto-follow:
|
|
507
512
|
'IPython': 'ignore'
|
|
508
513
|
when: 'not use_ipython'
|
|
509
514
|
|
|
515
|
+
- module-name: 'blib2to3' # checksum: a54cab2a
|
|
516
|
+
data-files:
|
|
517
|
+
- patterns:
|
|
518
|
+
- 'Grammar.txt'
|
|
519
|
+
- 'PatternGrammar.txt'
|
|
520
|
+
|
|
510
521
|
- module-name: 'bokeh' # checksum: 20c33794
|
|
511
522
|
data-files:
|
|
512
523
|
- dirs:
|
|
@@ -801,6 +812,27 @@
|
|
|
801
812
|
prefixes:
|
|
802
813
|
- 'native'
|
|
803
814
|
|
|
815
|
+
- module-name: 'coincurve._libsecp256k1' # checksum: a0cd690f
|
|
816
|
+
dlls:
|
|
817
|
+
- from_filenames:
|
|
818
|
+
prefixes:
|
|
819
|
+
- 'libsecp256k1'
|
|
820
|
+
|
|
821
|
+
implicit-imports:
|
|
822
|
+
- depends:
|
|
823
|
+
- '_cffi_backend'
|
|
824
|
+
|
|
825
|
+
- module-name: 'comm' # checksum: db60cdd5
|
|
826
|
+
anti-bloat:
|
|
827
|
+
- description: 'remove IPython reference'
|
|
828
|
+
no-auto-follow:
|
|
829
|
+
'IPython': 'ignore'
|
|
830
|
+
when: 'not use_ipython'
|
|
831
|
+
|
|
832
|
+
implicit-imports:
|
|
833
|
+
- depends:
|
|
834
|
+
- '30fcd23745efe32ce681__mypyc'
|
|
835
|
+
|
|
804
836
|
- module-name: 'connexion' # checksum: ae5ca038
|
|
805
837
|
data-files:
|
|
806
838
|
- dirs:
|
|
@@ -868,12 +900,13 @@
|
|
|
868
900
|
# Not necessary on Windows
|
|
869
901
|
when: 'not win32'
|
|
870
902
|
|
|
871
|
-
- module-name: 'cv2' # checksum:
|
|
903
|
+
- module-name: 'cv2' # checksum: 61e3c28c
|
|
872
904
|
variables:
|
|
873
905
|
setup_code:
|
|
874
906
|
- 'import cv2'
|
|
875
907
|
declarations:
|
|
876
908
|
'cv2_extra_sub_modules': 'tuple(m for m in cv2.__collect_extra_submodules(False) if m != ".dylibs")'
|
|
909
|
+
when: 'not is_conda_package("cv2")'
|
|
877
910
|
data-files:
|
|
878
911
|
- dirs:
|
|
879
912
|
- 'qt/fonts'
|
|
@@ -922,7 +955,9 @@
|
|
|
922
955
|
- 'cv2.cv2'
|
|
923
956
|
- 'numpy'
|
|
924
957
|
- 'numpy.core'
|
|
958
|
+
- depends:
|
|
925
959
|
- '["cv2.%s" % m for m in get_variable("cv2_extra_sub_modules")]'
|
|
960
|
+
when: 'not is_conda_package("cv2")'
|
|
926
961
|
- pre-import-code:
|
|
927
962
|
- |
|
|
928
963
|
import os
|
|
@@ -1005,6 +1040,11 @@
|
|
|
1005
1040
|
'import IPython.display as display': 'raise ImportError'
|
|
1006
1041
|
when: 'not use_ipython'
|
|
1007
1042
|
|
|
1043
|
+
- module-name: 'dask.widgets' # checksum: 2e123618
|
|
1044
|
+
data-files:
|
|
1045
|
+
- dirs:
|
|
1046
|
+
- 'templates'
|
|
1047
|
+
|
|
1008
1048
|
- module-name: 'datasets.packaged_modules' # checksum: 4c45e344
|
|
1009
1049
|
anti-bloat:
|
|
1010
1050
|
- description: 'workaround dependency source code usages'
|
|
@@ -1459,28 +1499,25 @@
|
|
|
1459
1499
|
- dirs:
|
|
1460
1500
|
- 'templates'
|
|
1461
1501
|
|
|
1502
|
+
- module-name: 'fontTools' # checksum: 5c1ede46
|
|
1503
|
+
anti-bloat:
|
|
1504
|
+
- description: 'remove doctest reference'
|
|
1505
|
+
no-auto-follow:
|
|
1506
|
+
'doctest': 'ignore'
|
|
1507
|
+
when: 'not use_unittest'
|
|
1508
|
+
- description: 'remove cython usage'
|
|
1509
|
+
no-auto-follow:
|
|
1510
|
+
'cython': 'ignore'
|
|
1511
|
+
when: 'not use_setuptools'
|
|
1512
|
+
- description: 'remove argparse reference'
|
|
1513
|
+
no-auto-follow:
|
|
1514
|
+
'argparse': 'ignore'
|
|
1515
|
+
|
|
1462
1516
|
- module-name: 'fontTools.cu2qu.cu2qu' # checksum: 5673e8a6
|
|
1463
1517
|
implicit-imports:
|
|
1464
1518
|
- depends:
|
|
1465
1519
|
- 'fontTools.cu2qu.errors'
|
|
1466
1520
|
|
|
1467
|
-
- module-name: 'fontTools.feaLib.lexer' # checksum: d92ed463
|
|
1468
|
-
implicit-imports:
|
|
1469
|
-
- depends:
|
|
1470
|
-
- 'fontTools.feaLib.error'
|
|
1471
|
-
- 'fontTools.feaLib.location'
|
|
1472
|
-
|
|
1473
|
-
- module-name: 'fontTools.misc.bezierTools' # checksum: 7bee054
|
|
1474
|
-
implicit-imports:
|
|
1475
|
-
- depends:
|
|
1476
|
-
- 'fontTools.misc.arrayTools'
|
|
1477
|
-
- 'fontTools.misc.transform'
|
|
1478
|
-
|
|
1479
|
-
- module-name: 'fontTools.qu2cu.qu2cu' # checksum: bdfe3a4f
|
|
1480
|
-
implicit-imports:
|
|
1481
|
-
- depends:
|
|
1482
|
-
- 'fontTools.misc.bezierTools'
|
|
1483
|
-
|
|
1484
1521
|
- module-name: 'Foundation' # checksum: f269907b
|
|
1485
1522
|
options:
|
|
1486
1523
|
checks:
|
|
@@ -1999,6 +2036,17 @@
|
|
|
1999
2036
|
- depends:
|
|
2000
2037
|
- 'jarowinkler._initialize_cpp'
|
|
2001
2038
|
|
|
2039
|
+
- module-name: 'jaxlib.version' # checksum: cd20d237
|
|
2040
|
+
anti-bloat:
|
|
2041
|
+
- description: 'remove git call'
|
|
2042
|
+
change_function:
|
|
2043
|
+
# No git version after compilation of course.
|
|
2044
|
+
'_version_from_git_tree': "'None'"
|
|
2045
|
+
- description: 'remove setuptools reference'
|
|
2046
|
+
change_function:
|
|
2047
|
+
'_get_cmdclass': 'un-callable'
|
|
2048
|
+
when: 'not use_setuptools'
|
|
2049
|
+
|
|
2002
2050
|
- module-name: 'jaxtyping' # checksum: 809b3e69
|
|
2003
2051
|
data-files:
|
|
2004
2052
|
- include-metadata:
|
|
@@ -2555,6 +2603,17 @@
|
|
|
2555
2603
|
'uninstall_repl_displayhook': "'(lambda: None)'"
|
|
2556
2604
|
when: 'not use_ipython'
|
|
2557
2605
|
|
|
2606
|
+
- module-name: 'mediapipe.python._framework_bindings' # checksum: 7ab15297
|
|
2607
|
+
implicit-imports:
|
|
2608
|
+
- post-import-code:
|
|
2609
|
+
- |
|
|
2610
|
+
import sys
|
|
2611
|
+
_framework_bindings = sys.modules["mediapipe.python._framework_bindings"]
|
|
2612
|
+
_framework_bindings.__path__ = []
|
|
2613
|
+
for sub_module_name in [key for key in sys.modules.keys() if key.startswith("_framework_bindings.")]:
|
|
2614
|
+
sys.modules["mediapipe.python."+sub_module_name] = sys.modules.pop(sub_module_name)
|
|
2615
|
+
when: 'python312_or_higher and not static_libpython'
|
|
2616
|
+
|
|
2558
2617
|
- module-name: 'mercurial.encoding' # checksum: de4741d0
|
|
2559
2618
|
implicit-imports:
|
|
2560
2619
|
- depends:
|
|
@@ -2779,14 +2838,27 @@
|
|
|
2779
2838
|
- patterns:
|
|
2780
2839
|
- 'usage.txt'
|
|
2781
2840
|
|
|
2782
|
-
- module-name: 'numba' # checksum:
|
|
2841
|
+
- module-name: 'numba' # checksum: 95f3f759
|
|
2783
2842
|
parameters:
|
|
2784
2843
|
- 'name': 'disable-jit'
|
|
2785
2844
|
'values': 'value in ("yes", "no")'
|
|
2845
|
+
variables:
|
|
2846
|
+
# TODO: Limit this to the versions of numba doing it, eventually it will go
|
|
2847
|
+
# away.
|
|
2848
|
+
setup_code:
|
|
2849
|
+
- 'from numba.core import config'
|
|
2850
|
+
declarations:
|
|
2851
|
+
'numba_legacy_type_system': 'str(getattr(config, "USE_LEGACY_TYPE_SYSTEM", 1) == 1)'
|
|
2786
2852
|
anti-bloat:
|
|
2787
2853
|
- description: 'remove numba testing reference'
|
|
2788
2854
|
change_function:
|
|
2789
2855
|
'test': 'un-callable'
|
|
2856
|
+
- description: 'resolve numba legacy type config choice'
|
|
2857
|
+
global_replacements:
|
|
2858
|
+
'config.USE_LEGACY_TYPE_SYSTEM': 'get_variable("numba_legacy_type_system")'
|
|
2859
|
+
- description: 'resolve numba legacy type config choice'
|
|
2860
|
+
global_replacements_re:
|
|
2861
|
+
'(_RedirectSubpackage\s*\(\s*.*?\s*"(numba.*?)"\s*\))': '\1; import \2'
|
|
2790
2862
|
options:
|
|
2791
2863
|
checks:
|
|
2792
2864
|
- description: "Numba is not yet fully working with Nuitka standalone, try to use '--noinclude-numba-mode=nofollow', but it may fail."
|
|
@@ -2848,12 +2920,13 @@
|
|
|
2848
2920
|
replacements_plain:
|
|
2849
2921
|
'type(attr) is types.MethodType': 'isinstance(attr, types.MethodType)'
|
|
2850
2922
|
|
|
2851
|
-
- module-name: 'numpy' # checksum:
|
|
2923
|
+
- module-name: 'numpy' # checksum: 10720e3
|
|
2852
2924
|
dlls:
|
|
2853
2925
|
- from_filenames:
|
|
2854
2926
|
relative_path: '.libs'
|
|
2855
2927
|
prefixes:
|
|
2856
2928
|
- 'lib'
|
|
2929
|
+
dest_path: '.'
|
|
2857
2930
|
when: 'win32'
|
|
2858
2931
|
- by_code:
|
|
2859
2932
|
setup_code: |
|
|
@@ -2866,7 +2939,7 @@
|
|
|
2866
2939
|
for filename in os.listdir(library_path)
|
|
2867
2940
|
if filename.startswith(library_prefix)] if os.path.isdir(library_path) else []
|
|
2868
2941
|
dest_path: '.'
|
|
2869
|
-
when: 'is_conda_package("numpy")'
|
|
2942
|
+
when: 'is_conda_package("numpy") and version("numpy") < (2,)'
|
|
2870
2943
|
|
|
2871
2944
|
anti-bloat:
|
|
2872
2945
|
- description: 'avoid URLs for AV noise'
|
|
@@ -2876,7 +2949,12 @@
|
|
|
2876
2949
|
no-auto-follow:
|
|
2877
2950
|
'numpy.distutils': 'ignore'
|
|
2878
2951
|
when: 'not use_setuptools'
|
|
2879
|
-
|
|
2952
|
+
- description: 'avoid PyYAML dependency'
|
|
2953
|
+
no-auto-follow:
|
|
2954
|
+
'yaml': 'ignore'
|
|
2955
|
+
- description: 'avoid charset_normalizer dependency'
|
|
2956
|
+
no-auto-follow:
|
|
2957
|
+
'charset_normalizer': 'ignore'
|
|
2880
2958
|
implicit-imports:
|
|
2881
2959
|
- depends:
|
|
2882
2960
|
- 'numpy._mklinit'
|
|
@@ -2985,7 +3063,7 @@
|
|
|
2985
3063
|
- depends:
|
|
2986
3064
|
- 'secrets'
|
|
2987
3065
|
|
|
2988
|
-
- module-name: 'numpy.testing' # checksum:
|
|
3066
|
+
- module-name: 'numpy.testing' # checksum: 7958db4c
|
|
2989
3067
|
anti-bloat:
|
|
2990
3068
|
- description: 'remove numpy testing framework'
|
|
2991
3069
|
module_code: |
|
|
@@ -3030,6 +3108,19 @@
|
|
|
3030
3108
|
with _assert_warns_context(warning_class, name=func.__name__):
|
|
3031
3109
|
return func(*args, **kwargs)
|
|
3032
3110
|
|
|
3111
|
+
@contextmanager
|
|
3112
|
+
def _assert_no_warnings_context(name=None):
|
|
3113
|
+
yield
|
|
3114
|
+
|
|
3115
|
+
def assert_no_warnings(*args, **kwargs):
|
|
3116
|
+
if not args:
|
|
3117
|
+
return _assert_no_warnings_context()
|
|
3118
|
+
|
|
3119
|
+
func = args[0]
|
|
3120
|
+
args = args[1:]
|
|
3121
|
+
with _assert_no_warnings_context(name=func.__name__):
|
|
3122
|
+
return func(*args, **kwargs)
|
|
3123
|
+
|
|
3033
3124
|
def assert_(val, msg=''):
|
|
3034
3125
|
if not val:
|
|
3035
3126
|
try:
|
|
@@ -3141,12 +3232,17 @@
|
|
|
3141
3232
|
support_info: 'error'
|
|
3142
3233
|
when: 'version("pyobjc") < (9,)'
|
|
3143
3234
|
|
|
3144
|
-
- module-name: 'onnx' # checksum:
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3235
|
+
- module-name: 'onnx.onnx_cpp2py_export' # checksum: 6d25b34c
|
|
3236
|
+
implicit-imports:
|
|
3237
|
+
- post-import-code:
|
|
3238
|
+
- |
|
|
3239
|
+
import sys
|
|
3240
|
+
onnx_cpp2py_export = sys.modules["onnx.onnx_cpp2py_export"]
|
|
3241
|
+
onnx_cpp2py_export.__path__ = []
|
|
3242
|
+
|
|
3243
|
+
for sub_module_name in [key for key in sys.modules.keys() if key.startswith("onnx_cpp2py_export.")]:
|
|
3244
|
+
sys.modules["onnx."+sub_module_name] = sys.modules.pop(sub_module_name)
|
|
3245
|
+
when: 'python312_or_higher and not static_libpython'
|
|
3150
3246
|
|
|
3151
3247
|
- module-name: 'onnxruntime' # checksum: 37a94e21
|
|
3152
3248
|
dlls:
|
|
@@ -3417,7 +3513,7 @@
|
|
|
3417
3513
|
- 'libpandaegg'
|
|
3418
3514
|
dest_path: '.'
|
|
3419
3515
|
|
|
3420
|
-
- module-name: 'pandas' # checksum:
|
|
3516
|
+
- module-name: 'pandas' # checksum: b4c6897a
|
|
3421
3517
|
anti-bloat:
|
|
3422
3518
|
- description: 'remove pandas testing framework'
|
|
3423
3519
|
replacements_plain:
|
|
@@ -3428,6 +3524,7 @@
|
|
|
3428
3524
|
- description: 'avoid numba in pandas'
|
|
3429
3525
|
no-auto-follow:
|
|
3430
3526
|
'pandas.core._numba.extensions': 'no numba acceleration'
|
|
3527
|
+
'lxml': 'no stylesheet support in pandas.io.formats.xml without including lxml'
|
|
3431
3528
|
when: 'not use_numba'
|
|
3432
3529
|
|
|
3433
3530
|
- module-name: 'pandas._libs' # checksum: 582d52b9
|
|
@@ -3774,6 +3871,13 @@
|
|
|
3774
3871
|
'"IPython" in sys.modules': 'False'
|
|
3775
3872
|
when: 'not use_ipython'
|
|
3776
3873
|
|
|
3874
|
+
- module-name: 'pdbp' # checksum: ae97ca9d
|
|
3875
|
+
anti-bloat:
|
|
3876
|
+
- no-auto-follow:
|
|
3877
|
+
'_pytest': 'ignore'
|
|
3878
|
+
'pytest': 'ignore'
|
|
3879
|
+
when: 'not use_pytest'
|
|
3880
|
+
|
|
3777
3881
|
- module-name: 'pdfminer' # checksum: a3629ef7
|
|
3778
3882
|
data-files:
|
|
3779
3883
|
- dirs:
|
|
@@ -3806,6 +3910,12 @@
|
|
|
3806
3910
|
- depends:
|
|
3807
3911
|
- '.region_*'
|
|
3808
3912
|
|
|
3913
|
+
- module-name: 'PIL' # checksum: 52d41000
|
|
3914
|
+
anti-bloat:
|
|
3915
|
+
- description: 'avoid numpy dependency'
|
|
3916
|
+
no-auto-follow:
|
|
3917
|
+
'numpy': 'ignore'
|
|
3918
|
+
|
|
3809
3919
|
- module-name: 'PIL._imagingtk' # checksum: 52df48a8
|
|
3810
3920
|
implicit-imports:
|
|
3811
3921
|
- depends:
|
|
@@ -4200,11 +4310,12 @@
|
|
|
4200
4310
|
'setuptools_scm': 'ignore'
|
|
4201
4311
|
when: 'not use_setuptools'
|
|
4202
4312
|
|
|
4203
|
-
- module-name: 'pyarrow.dataset' # checksum:
|
|
4313
|
+
- module-name: 'pyarrow.dataset' # checksum: a16a7618
|
|
4204
4314
|
implicit-imports:
|
|
4205
4315
|
- depends:
|
|
4206
4316
|
- 'pyarrow._acero'
|
|
4207
4317
|
- 'pyarrow._json'
|
|
4318
|
+
- 'pyarrow._csv'
|
|
4208
4319
|
|
|
4209
4320
|
- module-name: 'pyarrow.lib' # checksum: 302be0c2
|
|
4210
4321
|
implicit-imports:
|
|
@@ -4451,7 +4562,7 @@
|
|
|
4451
4562
|
- dirs:
|
|
4452
4563
|
- 'proj_dir'
|
|
4453
4564
|
|
|
4454
|
-
- module-name: 'PyQt5' # checksum:
|
|
4565
|
+
- module-name: 'PyQt5' # checksum: d5071a1a
|
|
4455
4566
|
data-files:
|
|
4456
4567
|
- empty_dirs:
|
|
4457
4568
|
- 'Qt5'
|
|
@@ -4465,9 +4576,6 @@
|
|
|
4465
4576
|
- description: 'PyQt5 cannot be used without bundle'
|
|
4466
4577
|
macos_bundle: 'yes'
|
|
4467
4578
|
when: 'macos and not is_conda_package("pyqt5") and use_pyqt5'
|
|
4468
|
-
- description: 'PyQt5 cannot be signed unless onefile'
|
|
4469
|
-
macos_bundle_as_onefile: 'yes'
|
|
4470
|
-
when: 'macos and use_pyqt5'
|
|
4471
4579
|
|
|
4472
4580
|
import-hacks:
|
|
4473
4581
|
- acceptable-missing-dlls:
|
|
@@ -4673,7 +4781,7 @@
|
|
|
4673
4781
|
- find-dlls-near-module:
|
|
4674
4782
|
- 'shiboken2'
|
|
4675
4783
|
|
|
4676
|
-
- module-name: 'PySide6' # checksum:
|
|
4784
|
+
- module-name: 'PySide6' # checksum: 1d5fdbbd
|
|
4677
4785
|
implicit-imports:
|
|
4678
4786
|
- post-import-code:
|
|
4679
4787
|
- |
|
|
@@ -4732,6 +4840,8 @@
|
|
|
4732
4840
|
- 'libqtquickcontrols2fluentwinui3styleimplplugin'
|
|
4733
4841
|
- 'libqtquickcontrols2fluentwinui3styleplugin'
|
|
4734
4842
|
- 'libqtwebviewquickplugin'
|
|
4843
|
+
- 'libqtquickscene3dplugin'
|
|
4844
|
+
- 'libqsqlmimer'
|
|
4735
4845
|
|
|
4736
4846
|
- module-name: 'PySide6.QtCore' # checksum: be0d99ac
|
|
4737
4847
|
implicit-imports:
|
|
@@ -5093,7 +5203,7 @@
|
|
|
5093
5203
|
- depends:
|
|
5094
5204
|
- 'scapy.layers.*'
|
|
5095
5205
|
|
|
5096
|
-
- module-name: 'scipy' # checksum:
|
|
5206
|
+
- module-name: 'scipy' # checksum: 831d0852
|
|
5097
5207
|
data-files:
|
|
5098
5208
|
- patterns:
|
|
5099
5209
|
- 'stats/_sobol_direction_numbers.npz' # for scipy.stats._sobol._initialize_direction_numbers
|
|
@@ -5116,6 +5226,10 @@
|
|
|
5116
5226
|
'torch': 'ignore'
|
|
5117
5227
|
'jax': 'ignore'
|
|
5118
5228
|
'dask': 'ignore'
|
|
5229
|
+
'matplotlib': 'ignore'
|
|
5230
|
+
'sparse': 'ignore'
|
|
5231
|
+
'ndonnx': 'ignore'
|
|
5232
|
+
'yaml': 'ignore'
|
|
5119
5233
|
bloat-mode-overrides:
|
|
5120
5234
|
'pydoc': 'allow'
|
|
5121
5235
|
|
|
@@ -5355,6 +5469,33 @@
|
|
|
5355
5469
|
- dirs:
|
|
5356
5470
|
- '.'
|
|
5357
5471
|
|
|
5472
|
+
- module-name: 'seleniumbase' # checksum: bcee33b2
|
|
5473
|
+
anti-bloat:
|
|
5474
|
+
- description: 'remove pytest reference'
|
|
5475
|
+
no-auto-follow:
|
|
5476
|
+
'pytest': 'ignore'
|
|
5477
|
+
when: 'not use_pytest'
|
|
5478
|
+
- description: 'Need to allow unittest usage'
|
|
5479
|
+
bloat-mode-overrides:
|
|
5480
|
+
'unittest': 'allow'
|
|
5481
|
+
|
|
5482
|
+
- module-name: 'seleniumbase.core.colored_traceback' # checksum: 6e89a07b
|
|
5483
|
+
anti-bloat:
|
|
5484
|
+
- description: 'disable colored tracebacks for standalone'
|
|
5485
|
+
replacements_plain:
|
|
5486
|
+
'sys.excepthook =': '# sys.excepthook ='
|
|
5487
|
+
when: 'standalone'
|
|
5488
|
+
|
|
5489
|
+
- module-name: 'seleniumbase.drivers' # checksum: 63813ab
|
|
5490
|
+
data-files:
|
|
5491
|
+
- empty_dirs:
|
|
5492
|
+
- '.'
|
|
5493
|
+
options:
|
|
5494
|
+
checks:
|
|
5495
|
+
- description: "need to use cached onefile mode with 'seleniumbase.drivers' to download persistently"
|
|
5496
|
+
support_info: 'warning'
|
|
5497
|
+
when: 'onefile and not onefile_cached'
|
|
5498
|
+
|
|
5358
5499
|
- module-name: 'sentence_transformers.SentenceTransformer' # checksum: c6062648
|
|
5359
5500
|
implicit-imports:
|
|
5360
5501
|
- depends:
|
|
@@ -5579,7 +5720,15 @@
|
|
|
5579
5720
|
replacements_plain:
|
|
5580
5721
|
"os.getenv('CONDA_PREFIX', '')": "''"
|
|
5581
5722
|
|
|
5582
|
-
- module-name: 'shiboken6' # checksum:
|
|
5723
|
+
- module-name: 'shiboken6' # checksum: ccdf53fe
|
|
5724
|
+
dlls:
|
|
5725
|
+
# Do not put these top level, some packages are really incompatible with
|
|
5726
|
+
# this library potentially
|
|
5727
|
+
- from_filenames:
|
|
5728
|
+
prefixes:
|
|
5729
|
+
- 'msvcp'
|
|
5730
|
+
when: 'win32'
|
|
5731
|
+
|
|
5583
5732
|
implicit-imports:
|
|
5584
5733
|
- depends:
|
|
5585
5734
|
- 'argparse'
|
|
@@ -5790,6 +5939,19 @@
|
|
|
5790
5939
|
'import dask.array as da': 'raise ImportError'
|
|
5791
5940
|
when: 'not use_dask'
|
|
5792
5941
|
|
|
5942
|
+
- module-name: 'sklearn' # checksum: acc187b0
|
|
5943
|
+
anti-bloat:
|
|
5944
|
+
- description: 'pandas check should not cause usage'
|
|
5945
|
+
no-auto-follow:
|
|
5946
|
+
'pandas': 'ignore'
|
|
5947
|
+
- description: 'matplotlib check should not cause usage'
|
|
5948
|
+
no-auto-follow:
|
|
5949
|
+
'matplotlib': 'ignore'
|
|
5950
|
+
- description: 'remove pytest testing framework'
|
|
5951
|
+
no-auto-follow:
|
|
5952
|
+
'pytest': 'ignore'
|
|
5953
|
+
when: 'not use_pytest'
|
|
5954
|
+
|
|
5793
5955
|
- module-name: 'sklearn._distributor_init' # checksum: 8597e1a6
|
|
5794
5956
|
dlls:
|
|
5795
5957
|
- from_filenames:
|
|
@@ -5826,6 +5988,12 @@
|
|
|
5826
5988
|
- 'sklearn.datasets.data'
|
|
5827
5989
|
- 'sklearn.datasets.descr'
|
|
5828
5990
|
|
|
5991
|
+
- module-name: 'sklearn.datasets._base' # checksum: 521f4991
|
|
5992
|
+
anti-bloat:
|
|
5993
|
+
- description: 'avoid PIL dependency for sample image testing'
|
|
5994
|
+
change_function:
|
|
5995
|
+
'load_sample_images': 'un-callable'
|
|
5996
|
+
|
|
5829
5997
|
- module-name: 'sklearn.decomposition' # checksum: 61c8cb5d
|
|
5830
5998
|
implicit-imports:
|
|
5831
5999
|
- depends:
|
|
@@ -5962,20 +6130,20 @@
|
|
|
5962
6130
|
- 'sklearn.tree._tree'
|
|
5963
6131
|
- 'sklearn.tree._utils'
|
|
5964
6132
|
|
|
6133
|
+
- module-name: 'sklearn.tree._splitter' # checksum: f99ea94
|
|
6134
|
+
implicit-imports:
|
|
6135
|
+
- depends:
|
|
6136
|
+
- 'sklearn.tree._partitioner'
|
|
6137
|
+
|
|
5965
6138
|
- module-name: 'sklearn.tree._tree' # checksum: 327dee3d
|
|
5966
6139
|
implicit-imports:
|
|
5967
6140
|
- depends:
|
|
5968
6141
|
- 'sklearn.neighbors._quad_tree'
|
|
5969
6142
|
|
|
5970
|
-
- module-name: 'sklearn.utils' # checksum:
|
|
6143
|
+
- module-name: 'sklearn.utils' # checksum: cecf5599
|
|
5971
6144
|
data-files:
|
|
5972
6145
|
- patterns:
|
|
5973
6146
|
- '*.css'
|
|
5974
|
-
anti-bloat:
|
|
5975
|
-
- description: 'pandas and matplotlib checks should not cause usage'
|
|
5976
|
-
no-auto-follow:
|
|
5977
|
-
'pandas': 'ignore'
|
|
5978
|
-
'matplotlib': 'ignore'
|
|
5979
6147
|
implicit-imports:
|
|
5980
6148
|
- depends:
|
|
5981
6149
|
- 'sklearn.utils.arrayfuncs'
|
|
@@ -6081,24 +6249,6 @@
|
|
|
6081
6249
|
- 'libportaudio'
|
|
6082
6250
|
when: 'macos'
|
|
6083
6251
|
|
|
6084
|
-
- module-name: 'soundfile' # checksum: ea2aad42
|
|
6085
|
-
dlls:
|
|
6086
|
-
- from_filenames:
|
|
6087
|
-
relative_path: '_soundfile_data'
|
|
6088
|
-
prefixes:
|
|
6089
|
-
- 'libsndfile*64bit'
|
|
6090
|
-
when: 'win32 and arch_amd64'
|
|
6091
|
-
- from_filenames:
|
|
6092
|
-
relative_path: '_soundfile_data'
|
|
6093
|
-
prefixes:
|
|
6094
|
-
- 'libsndfile*32bit'
|
|
6095
|
-
when: 'win32 and arch_x86'
|
|
6096
|
-
- from_filenames:
|
|
6097
|
-
relative_path: '_soundfile_data'
|
|
6098
|
-
prefixes:
|
|
6099
|
-
- 'libsndfile'
|
|
6100
|
-
when: 'macos'
|
|
6101
|
-
|
|
6102
6252
|
- module-name: 'spacy' # checksum: 4943d3fa
|
|
6103
6253
|
data-files:
|
|
6104
6254
|
- dirs:
|
|
@@ -6189,6 +6339,12 @@
|
|
|
6189
6339
|
- depends:
|
|
6190
6340
|
- 'sqlalchemy.dialects.mssql.pyodbc'
|
|
6191
6341
|
|
|
6342
|
+
- module-name: 'sqlalchemy.orm' # checksum: 807b0764
|
|
6343
|
+
implicit-imports:
|
|
6344
|
+
- depends:
|
|
6345
|
+
- 'sqlalchemy.orm.*'
|
|
6346
|
+
- 'sqlalchemy.ext.*'
|
|
6347
|
+
|
|
6192
6348
|
- module-name: 'sqlalchemy.orm.util' # checksum: 629852fa
|
|
6193
6349
|
anti-bloat:
|
|
6194
6350
|
- description: 'remove pytest reference'
|
|
@@ -6206,7 +6362,13 @@
|
|
|
6206
6362
|
- depends:
|
|
6207
6363
|
- 'sqlalchemy.orm.dependency'
|
|
6208
6364
|
|
|
6209
|
-
- module-name: 'sqlfluff' # checksum:
|
|
6365
|
+
- module-name: 'sqlfluff' # checksum: 3fc9a782
|
|
6366
|
+
data-files:
|
|
6367
|
+
- include-metadata:
|
|
6368
|
+
# TODO: Actually we should be able to include by
|
|
6369
|
+
# entry point names.
|
|
6370
|
+
- 'sqlfluff'
|
|
6371
|
+
|
|
6210
6372
|
anti-bloat:
|
|
6211
6373
|
- description: 'remove pytest reference'
|
|
6212
6374
|
replacements_plain:
|
|
@@ -6227,6 +6389,11 @@
|
|
|
6227
6389
|
- 'sqlfluff.core.plugin.*'
|
|
6228
6390
|
- 'sqlfluff.rules.*'
|
|
6229
6391
|
|
|
6392
|
+
- module-name: 'sqlglot.dialects' # checksum: b0ad4de6
|
|
6393
|
+
implicit-imports:
|
|
6394
|
+
- depends:
|
|
6395
|
+
- 'sqlglot.dialects.*'
|
|
6396
|
+
|
|
6230
6397
|
- module-name: 'srsly.msgpack._packer' # checksum: ef9e3a96
|
|
6231
6398
|
implicit-imports:
|
|
6232
6399
|
- depends:
|
|
@@ -7838,13 +8005,23 @@
|
|
|
7838
8005
|
change_function:
|
|
7839
8006
|
'doctests': "'(lambda: None)'"
|
|
7840
8007
|
|
|
7841
|
-
- module-name: 'tqdm' # checksum:
|
|
8008
|
+
- module-name: 'tqdm' # checksum: f48e841d
|
|
7842
8009
|
anti-bloat:
|
|
7843
8010
|
- description: 'remove IPython reference'
|
|
7844
8011
|
change_function:
|
|
7845
8012
|
'tnrange': "'(lambda *args, **kwargs: None)'"
|
|
7846
8013
|
'tqdm_notebook': "'(lambda *args, **kwargs: None)'"
|
|
7847
8014
|
when: 'not use_ipython'
|
|
8015
|
+
- description: 'remove matplotlib reference'
|
|
8016
|
+
no-auto-follow:
|
|
8017
|
+
'matplotlib': 'ignore'
|
|
8018
|
+
- description: 'remove setuptools reference'
|
|
8019
|
+
no-auto-follow:
|
|
8020
|
+
'setuptools_scm': 'ignore'
|
|
8021
|
+
when: 'not use_setuptools'
|
|
8022
|
+
- description: 'remove pandas reference'
|
|
8023
|
+
no-auto-follow:
|
|
8024
|
+
'pandas': 'ignore'
|
|
7848
8025
|
|
|
7849
8026
|
- module-name: 'tqdm.autonotebook' # checksum: 6ac095cb
|
|
7850
8027
|
anti-bloat:
|
|
@@ -7852,24 +8029,12 @@
|
|
|
7852
8029
|
module_code: "from .std import tqdm, trange\n"
|
|
7853
8030
|
when: 'not use_ipython'
|
|
7854
8031
|
|
|
7855
|
-
- module-name: 'tqdm.std' # checksum: 2e350129
|
|
7856
|
-
anti-bloat:
|
|
7857
|
-
- no-auto-follow:
|
|
7858
|
-
'pandas': 'ignore'
|
|
7859
|
-
|
|
7860
|
-
- module-name: 'tqdm.version' # checksum: 6b612ba4
|
|
7861
|
-
anti-bloat:
|
|
7862
|
-
- description: 'remove IPython reference'
|
|
7863
|
-
no-auto-follow:
|
|
7864
|
-
'setuptools_scm': 'ignore'
|
|
7865
|
-
when: 'not use_setuptools'
|
|
7866
|
-
|
|
7867
8032
|
- module-name: 'tracerite' # checksum: fe3c0d7b
|
|
7868
8033
|
data-files:
|
|
7869
8034
|
- patterns:
|
|
7870
8035
|
- '*.css'
|
|
7871
8036
|
|
|
7872
|
-
- module-name: 'transformers' # checksum:
|
|
8037
|
+
- module-name: 'transformers' # checksum: d013b95f
|
|
7873
8038
|
data-files:
|
|
7874
8039
|
- include-metadata:
|
|
7875
8040
|
- 'accelerate'
|
|
@@ -7892,6 +8057,7 @@
|
|
|
7892
8057
|
- 'openai'
|
|
7893
8058
|
- 'pygments'
|
|
7894
8059
|
- 'soundfile'
|
|
8060
|
+
- 'tqdm'
|
|
7895
8061
|
|
|
7896
8062
|
anti-bloat:
|
|
7897
8063
|
- description: 'remove IPython reference'
|
|
@@ -8373,9 +8539,10 @@
|
|
|
8373
8539
|
- patterns:
|
|
8374
8540
|
- 'VERSION'
|
|
8375
8541
|
|
|
8376
|
-
- module-name: 'webview' # checksum:
|
|
8542
|
+
- module-name: 'webview' # checksum: f4e8fc01
|
|
8377
8543
|
data-files:
|
|
8378
8544
|
- dirs:
|
|
8545
|
+
- 'js'
|
|
8379
8546
|
- 'lib'
|
|
8380
8547
|
dlls:
|
|
8381
8548
|
- from_filenames:
|
|
@@ -8637,12 +8804,13 @@
|
|
|
8637
8804
|
prefixes:
|
|
8638
8805
|
- 'xgboost'
|
|
8639
8806
|
|
|
8640
|
-
- module-name: 'xgboost.sklearn' # checksum:
|
|
8807
|
+
- module-name: 'xgboost.sklearn' # checksum: d0a963f4
|
|
8641
8808
|
anti-bloat:
|
|
8642
8809
|
- description: 'remove docstring dependency'
|
|
8643
8810
|
replacements_plain:
|
|
8644
8811
|
'fit.__doc__ = XGBModel.fit.__doc__.replace(': 'fit.__doc__ = "Fit gradient boosting model".replace('
|
|
8645
|
-
|
|
8812
|
+
'assert XGBModel.fit.__doc__ is not None': ''
|
|
8813
|
+
when: 'no_docstrings'
|
|
8646
8814
|
|
|
8647
8815
|
- module-name: 'Xlib.display' # checksum: 3b1d6e64
|
|
8648
8816
|
implicit-imports:
|