mit neuen venv und exe-Files

This commit is contained in:
2024-11-03 17:26:54 +01:00
parent 07c05a338a
commit 0c373ff593
15115 changed files with 1998469 additions and 0 deletions

View File

@@ -0,0 +1,801 @@
"""A collection of functions which are triggered automatically by finder when
certain packages are included or not found.
"""
# ruff: noqa: ARG001
from __future__ import annotations
import sys
import sysconfig
from contextlib import suppress
from pathlib import Path
from typing import TYPE_CHECKING
from cx_Freeze._compat import IS_MACOS, IS_MINGW, IS_WINDOWS
from cx_Freeze.hooks._qthooks import get_qt_plugins_paths # noqa: F401
if TYPE_CHECKING:
from cx_Freeze.finder import ModuleFinder
from cx_Freeze.module import Module
def load_aiofiles(finder: ModuleFinder, module: Module) -> None:
"""The aiofiles must be loaded as a package."""
finder.include_package("aiofiles")
def load_babel(finder: ModuleFinder, module: Module) -> None:
"""The babel must be loaded as a package, and has pickeable data."""
finder.include_package("babel")
module.in_file_system = 1
def load_bcrypt(finder: ModuleFinder, module: Module) -> None:
"""The bcrypt < 4.0 package requires the _cffi_backend module
(loaded implicitly).
"""
include_cffi = True
if module.distribution and module.distribution.version[0] >= 4:
include_cffi = False
if include_cffi:
finder.include_module("_cffi_backend")
def load_boto(finder: ModuleFinder, module: Module) -> None:
"""The boto package uses 'six' fake modules."""
finder.exclude_module("boto.vendored.six.moves")
def load_boto3(finder: ModuleFinder, module: Module) -> None:
"""The boto3 package."""
finder.include_package("boto3.dynamodb")
finder.include_package("boto3.ec2")
finder.include_package("boto3.s3")
finder.include_files(module.file.parent / "data", "lib/boto3/data")
def load_cElementTree(finder: ModuleFinder, module: Module) -> None:
"""The cElementTree module implicitly loads the elementtree.ElementTree
module; make sure this happens.
"""
finder.include_module("elementtree.ElementTree")
def load_ceODBC(finder: ModuleFinder, module: Module) -> None:
"""The ceODBC module implicitly imports both datetime and decimal;
make sure this happens.
"""
finder.include_module("datetime")
finder.include_module("decimal")
def load_certifi(finder: ModuleFinder, module: Module) -> None:
"""The certifi package uses importlib.resources to locate the cacert.pem
in zip packages.
"""
if module.in_file_system == 0:
cacert = Path(__import__("certifi").where())
finder.zip_include_files(cacert, Path("certifi", cacert.name))
def load__cffi_backend(finder: ModuleFinder, module: Module) -> None:
"""Add the cffi metadata for _cffi_backend module."""
module.update_distribution("cffi")
def load_cffi_cparser(finder: ModuleFinder, module: Module) -> None:
"""The cffi.cparser module can use a extension if present."""
try:
cffi = __import__("cffi", fromlist=["_pycparser"])
pycparser = getattr(cffi, "_pycparser") # noqa: B009
finder.include_module(pycparser.__name__)
except (ImportError, AttributeError):
finder.exclude_module("cffi._pycparser")
def load_charset_normalizer(finder: ModuleFinder, module: Module) -> None:
"""The charset_normalizer package."""
finder.exclude_module("charset_normalizer.cli")
def load_charset_normalizer_md(finder: ModuleFinder, module: Module) -> None:
"""The charset_normalizer package implicitly imports a extension module."""
mypyc = module.file.parent / ("md__mypyc" + "".join(module.file.suffixes))
if mypyc.exists():
finder.include_module("charset_normalizer.md__mypyc")
def load_copy(finder: ModuleFinder, module: Module) -> None:
"""The copy module should filter import names."""
if not sys.platform.startswith("java"):
module.exclude_names.add("org.python.core")
def load_crc32c(finder: ModuleFinder, module: Module) -> None:
"""The google.crc32c module requires _cffi_backend module."""
finder.include_module("_cffi_backend")
def load_cryptography(finder: ModuleFinder, module: Module) -> None:
"""The cryptography module requires the _cffi_backend module."""
if module.distribution and module.distribution.requires:
include_cffi = False
for req in module.distribution.requires:
if req.startswith("cffi"):
include_cffi = True
break
else:
include_cffi = True
if include_cffi:
finder.include_module("_cffi_backend")
def load_ctypes(finder: ModuleFinder, module: Module) -> None:
"""The ctypes module should filter import names."""
if not IS_WINDOWS and not IS_MINGW:
module.exclude_names.add("nt")
def load_ctypes_util(finder: ModuleFinder, module: Module) -> None:
"""The ctypes.util module should filter import names."""
if not IS_MACOS:
module.exclude_names.add("ctypes.macholib.dyld")
def load__ctypes(finder: ModuleFinder, module: Module) -> None:
"""In Windows, the _ctypes module in Python 3.8+ requires an additional
libffi dll to be present in the build directory.
"""
if IS_WINDOWS:
dll_pattern = "libffi-*.dll"
dll_dir = Path(sys.base_prefix, "DLLs")
for dll_path in dll_dir.glob(dll_pattern):
finder.include_files(dll_path, Path("lib", dll_path.name))
def load_cx_Oracle(finder: ModuleFinder, module: Module) -> None:
"""The cx_Oracle module implicitly imports datetime; make sure this
happens.
"""
finder.include_module("datetime")
finder.include_module("decimal")
def load_datetime(finder: ModuleFinder, module: Module) -> None:
"""The datetime module implicitly imports time; make sure this happens."""
finder.include_module("time")
def load_discord(finder: ModuleFinder, module: Module) -> None:
"""py-cord requires its metadata."""
module.update_distribution("py-cord")
def load_difflib(finder: ModuleFinder, module: Module) -> None:
"""The difflib module uses doctest for tests and shouldn't be imported."""
module.exclude_names.add("doctest")
def load_docutils_frontend(finder: ModuleFinder, module: Module) -> None:
"""The optik module is the old name for the optparse module; ignore the
module if it cannot be found.
"""
module.ignore_names.add("optik")
def load_dummy_threading(finder: ModuleFinder, module: Module) -> None:
"""The dummy_threading module plays games with the name of the threading
module for its own purposes; ignore that here.
"""
finder.exclude_module("_dummy_threading")
def load_encodings(finder: ModuleFinder, module: Module) -> None:
"""The encodings module should filter import names."""
if not IS_WINDOWS and not IS_MINGW:
module.exclude_names.add("_winapi")
def load_flask_compress(finder: ModuleFinder, module: Module) -> None:
"""flask-compress requires its metadata."""
module.update_distribution("Flask_Compress")
def load_ftplib(finder: ModuleFinder, module: Module) -> None:
"""The ftplib module attempts to import the SOCKS module; ignore this
module if it cannot be found.
"""
module.ignore_names.add("SOCKS")
def load_gevent(finder: ModuleFinder, module: Module) -> None:
"""The gevent must be loaded as a package."""
finder.include_package("gevent")
def load_GifImagePlugin(finder: ModuleFinder, module: Module) -> None:
"""The GifImagePlugin module optionally imports the _imaging_gif module."""
module.ignore_names.add("_imaging_gif")
def load_googleapiclient(finder: ModuleFinder, module: Module) -> None:
"""Add the googleapiclient metadata for googleapiclient package."""
module.update_distribution("google_api_python_client")
def load_googleapiclient_discovery(
finder: ModuleFinder, module: Module
) -> None:
"""The googleapiclient.discovery module needs discovery_cache subpackage
in file system.
"""
discovery_cache = finder.include_package("googleapiclient.discovery_cache")
discovery_cache.in_file_system = 1
def load_google_cloud_storage(finder: ModuleFinder, module: Module) -> None:
"""The google.cloud.storage package always uses the parent module."""
finder.include_package("google.cloud")
def load_gtk__gtk(finder: ModuleFinder, module: Module) -> None:
"""The gtk._gtk module has a number of implicit imports."""
finder.include_module("atk")
finder.include_module("cairo")
finder.include_module("gio")
finder.include_module("pango")
finder.include_module("pangocairo")
def load_h5py(finder: ModuleFinder, module: Module) -> None:
"""h5py module has a number of implicit imports."""
finder.include_module("h5py.defs")
finder.include_module("h5py.utils")
finder.include_module("h5py._proxy")
try:
api_gen = __import__("h5py", fromlist=["api_gen"]).api_gen
finder.include_module(api_gen.__name__)
except (ImportError, AttributeError):
pass
finder.include_module("h5py._errors")
finder.include_module("h5py.h5ac")
def load_h5py_wrapper(finder: ModuleFinder, module: Module) -> None:
"""h5py_wrapper module requires future and pytest-runner."""
finder.include_module("future")
finder.include_module("ptr")
def load_hashlib(finder: ModuleFinder, module: Module) -> None:
"""The hashlib's fallback modules don't exist if the equivalent OpenSSL
algorithms are loaded from _hashlib, so we can ignore the error.
"""
module.ignore_names.update(["_md5", "_sha", "_sha256", "_sha512"])
def load_heapq(finder: ModuleFinder, module: Module) -> None:
"""The heapq module uses doctest for tests and shouldn't be imported."""
module.exclude_names.add("doctest")
def load_hdfdict(finder: ModuleFinder, module: Module) -> None:
"""The hdfdict module requires h5py_wrapper and PyYAML."""
finder.include_module("h5py_wrapper")
finder.include_package("yaml")
def load_idna(finder: ModuleFinder, module: Module) -> None:
"""The idna module implicitly loads data; make sure this happens."""
finder.include_module("idna.idnadata")
def load_imagej(finder: ModuleFinder, module: Module) -> None:
"""The pyimagej package requires its metadata."""
module.update_distribution("pyimagej")
def load_jpype(finder: ModuleFinder, module: Module) -> None:
"""The JPype1 package requires its binary."""
source = module.file.parent.parent / "org.jpype.jar"
if source.exists():
finder.include_files(
source, f"lib/{source.name}", copy_dependent_files=False
)
def load_lazy_loader(finder: ModuleFinder, module: Module) -> None:
"""Use load_lazy_loader 0.2+ to work with .pyc files."""
if module.distribution.version < (0, 2):
msg = "Please upgrade 'lazy_loader>=0.2' to support cx_Freeze"
raise SystemExit(msg)
def load_librosa(finder: ModuleFinder, module: Module) -> None:
"""The librosa must be loaded as package."""
finder.include_package("librosa")
def load_llvmlite(finder: ModuleFinder, module: Module) -> None:
"""The llvmlite must be loaded as package."""
finder.include_package("llvmlite")
finder.exclude_module("llvmlite.tests")
def load_lxml(finder: ModuleFinder, module: Module) -> None:
"""The lxml package uses an extension."""
finder.include_module("lxml._elementpath")
def load_markdown(finder: ModuleFinder, module: Module) -> None:
"""The markdown package implicitly loads html.parser; make sure this
happens.
"""
finder.include_module("html.parser")
def load_mimetypes(finder: ModuleFinder, module: Module) -> None:
"""The mimetypes module should filter import names."""
if not IS_WINDOWS and not IS_MINGW:
module.exclude_names.update(("_winapi", "winreg"))
def load_ntpath(finder: ModuleFinder, module: Module) -> None:
"""The ntpath module should filter import names."""
if not IS_WINDOWS and not IS_MINGW:
module.exclude_names.update(("nt", "_winapi"))
def load_Numeric(finder: ModuleFinder, module: Module) -> None:
"""The Numeric module optionally loads the dotblas module; ignore the error
if this modules does not exist.
"""
module.ignore_names.add("dotblas")
def load_orjson(finder: ModuleFinder, module: Module) -> None:
"""The orjson has dynamic imports."""
finder.include_module("dataclasses")
finder.include_module("datetime")
finder.include_module("decimal")
finder.include_module("enum")
finder.include_package("json")
finder.include_module("uuid")
finder.include_package("zoneinfo")
def load_os(finder: ModuleFinder, module: Module) -> None:
"""Sets the alias for os.path."""
if "posix" in sys.builtin_module_names:
finder.add_alias("os.path", "posixpath")
module.ignore_names.add("nt")
else:
finder.add_alias("os.path", "ntpath")
module.ignore_names.add("posix")
def load_pathlib(finder: ModuleFinder, module: Module) -> None:
"""The pathlib module should filter import names."""
if IS_WINDOWS:
module.exclude_names.update(("grp", "pwd"))
elif not IS_MINGW:
module.exclude_names.add("nt")
def load_pickle(finder: ModuleFinder, module: Module) -> None:
"""The pickle module uses doctest for tests and shouldn't be imported."""
module.exclude_names.add("doctest")
if not sys.platform.startswith("java"):
module.exclude_names.add("org.python.core")
def load_pickletools(finder: ModuleFinder, module: Module) -> None:
"""The pickletools module uses doctest that shouldn't be imported."""
module.exclude_names.add("doctest")
def load_pikepdf(finder: ModuleFinder, module: Module) -> None:
"""The pikepdf must be loaded as a package."""
finder.include_package("pikepdf")
def load_platform(finder: ModuleFinder, module: Module) -> None:
"""The platform module should filter import names."""
if not sys.platform.startswith("java"):
module.exclude_names.add("java.lang")
if not sys.platform.startswith("OpenVMS"):
module.exclude_names.add("vms_lib")
if not IS_MACOS:
module.exclude_names.add("plistlib")
if not IS_WINDOWS and not IS_MINGW:
module.exclude_names.add("winreg")
module.exclude_names.add("_winreg")
def load_plotly(finder: ModuleFinder, module: Module) -> None:
"""The plotly must be loaded as a package."""
finder.include_package("plotly")
def load_posixpath(finder: ModuleFinder, module: Module) -> None:
"""The posixpath module should filter import names."""
if IS_WINDOWS and not IS_MINGW:
module.exclude_names.add("posix")
module.exclude_names.add("pwd")
def load_postgresql_lib(finder: ModuleFinder, module: Module) -> None:
"""The postgresql.lib module requires the libsys.sql file to be included
so make sure that file is included.
"""
libsys = module.path[0] / "libsys.sql"
if libsys.exists():
finder.include_files(libsys, libsys.name)
def load_pty(finder: ModuleFinder, module: Module) -> None:
"""The sgi module is not needed for this module to function."""
module.ignore_names.add("sgi")
def load_ptr(finder: ModuleFinder, module: Module) -> None:
"""pytest-runner requires its metadata."""
module.update_distribution("pytest-runner")
def load_pycountry(finder: ModuleFinder, module: Module) -> None:
"""The pycountry module has data in subdirectories."""
finder.exclude_module("pycountry.tests")
module.in_file_system = 1
def load_pycparser(finder: ModuleFinder, module: Module) -> None:
"""These files are missing which causes
permission denied issues on windows when they are regenerated.
"""
finder.include_module("pycparser.lextab")
finder.include_module("pycparser.yacctab")
def load_pydantic(finder: ModuleFinder, module: Module) -> None:
"""The pydantic package is compiled by Cython (the imports are hidden)."""
finder.include_module("colorsys")
finder.include_module("dataclasses") # support in v 1.7+
finder.include_module("datetime")
finder.include_module("decimal")
finder.include_module("functools")
finder.include_module("ipaddress")
finder.include_package("json")
finder.include_module("pathlib")
finder.include_module("typing_extensions") # support in v 1.8
finder.include_module("uuid")
def load_pygments(finder: ModuleFinder, module: Module) -> None:
"""The pygments package dynamically load styles."""
finder.include_package("pygments.styles")
finder.include_package("pygments.lexers")
finder.include_package("pygments.formatters")
def load_pyodbc(finder: ModuleFinder, module: Module) -> None:
"""The pyodbc module implicitly imports others modules;
make sure this happens.
"""
for mod in ("datetime", "decimal", "hashlib", "locale", "uuid"):
finder.include_module(mod)
def load_pyreadstat(finder: ModuleFinder, module: Module) -> None:
"""The pyreadstat package must be loaded as a package."""
finder.include_package("pyreadstat")
finder.include_module("pandas")
def load_pyqtgraph(finder: ModuleFinder, module: Module) -> None:
"""The pyqtgraph package must be loaded as a package."""
finder.include_package("pyqtgraph")
def load_pytest(finder: ModuleFinder, module: Module) -> None:
"""The pytest package implicitly imports others modules;
make sure this happens.
"""
pytest = __import__("pytest")
for mod in pytest.freeze_includes():
finder.include_module(mod)
def load_pythoncom(finder: ModuleFinder, module: Module) -> None:
"""The pythoncom module is actually contained in a DLL but since those
cannot be loaded directly in Python 2.5 and higher a special module is
used to perform that task; simply use that technique directly to
determine the name of the DLL and ensure it is included as a file in
the target directory.
"""
pythoncom = __import__("pythoncom")
filename = Path(pythoncom.__file__)
finder.include_files(
filename, Path("lib", filename.name), copy_dependent_files=False
)
def load_pywintypes(finder: ModuleFinder, module: Module) -> None:
"""The pywintypes module is actually contained in a DLL but since those
cannot be loaded directly in Python 2.5 and higher a special module is
used to perform that task; simply use that technique directly to
determine the name of the DLL and ensure it is included as a file in the
target directory.
"""
pywintypes = __import__("pywintypes")
filename = Path(pywintypes.__file__)
finder.include_files(
filename, Path("lib", filename.name), copy_dependent_files=False
)
def load_reportlab(finder: ModuleFinder, module: Module) -> None:
"""The reportlab module loads a submodule rl_settings via exec so force
its inclusion here.
"""
finder.include_module("reportlab.rl_settings")
def load_sentry_sdk(finder: ModuleFinder, module: Module) -> None:
"""The Sentry.io SDK."""
finder.include_module("sentry_sdk.integrations.stdlib")
finder.include_module("sentry_sdk.integrations.excepthook")
finder.include_module("sentry_sdk.integrations.dedupe")
finder.include_module("sentry_sdk.integrations.atexit")
finder.include_module("sentry_sdk.integrations.modules")
finder.include_module("sentry_sdk.integrations.argv")
finder.include_module("sentry_sdk.integrations.logging")
finder.include_module("sentry_sdk.integrations.threading")
def load_shapely(finder: ModuleFinder, module: Module) -> None:
"""The Shapely.libs directory is not copied."""
libs_name = "Shapely.libs"
source_dir = module.path[0].parent / libs_name
if source_dir.exists():
finder.include_files(source_dir, f"lib/{libs_name}")
def load_shutil(finder: ModuleFinder, module: Module) -> None:
"""The shutil module should filter import names."""
if IS_WINDOWS:
module.exclude_names.update(("grp", "posix", "pwd"))
elif not IS_MINGW:
module.exclude_names.update(("nt", "_winapi"))
def load_site(finder: ModuleFinder, module: Module) -> None:
"""The site module optionally loads the sitecustomize and usercustomize
modules; ignore the error if these modules do not exist.
"""
module.ignore_names.update(["sitecustomize", "usercustomize"])
def load_six(finder: ModuleFinder, module: Module) -> None:
"""The six module maps old modules."""
module.ignore_names.add("StringIO")
def load_sqlite3(finder: ModuleFinder, module: Module) -> None:
"""In Windows, the sqlite3 module requires an additional dll sqlite3.dll to
be present in the build directory.
"""
if IS_WINDOWS:
dll_name = "sqlite3.dll"
dll_path = Path(sys.base_prefix, "DLLs", dll_name)
if not dll_path.exists():
dll_path = Path(sys.base_prefix, "Library", "bin", dll_name)
if dll_path.exists():
finder.include_files(dll_path, Path("lib", dll_name))
finder.include_module("sqlite3.dump")
def load_subprocess(finder: ModuleFinder, module: Module) -> None:
"""The subprocess module should filter import names."""
if IS_WINDOWS:
exclude_names = ("_posixsubprocess", "fcntl", "grp", "pwd")
elif not IS_MINGW:
exclude_names = ("msvcrt", "_winapi")
else:
return
module.exclude_names.update(exclude_names)
def load_sysconfig(finder: ModuleFinder, module: Module) -> None:
"""The sysconfig module implicitly loads _sysconfigdata."""
if IS_WINDOWS:
return
get_data_name = getattr(sysconfig, "_get_sysconfigdata_name", None)
if get_data_name is None:
return
with suppress(ImportError):
finder.include_module(get_data_name())
def load_tarfile(finder: ModuleFinder, module: Module) -> None:
"""The tarfile module should filter import names."""
if IS_WINDOWS:
module.exclude_names.update(("grp", "pwd"))
def load_time(finder: ModuleFinder, module: Module) -> None:
"""The time module implicitly loads _strptime; make sure this happens."""
finder.include_module("_strptime")
def load_tokenizers(finder: ModuleFinder, module: Module) -> None:
"""On Linux the tokenizers.libs directory is not copied."""
if module.path is None:
return
libs_name = "tokenizers.libs"
source_dir = module.path[0].parent / libs_name
if source_dir.exists():
finder.include_files(source_dir, Path("lib", libs_name))
def load_twisted_conch_ssh_transport(
finder: ModuleFinder, module: Module
) -> None:
"""The twisted.conch.ssh.transport module uses __import__ builtin to
dynamically load different ciphers at runtime.
"""
finder.include_package("Crypto.Cipher")
def load_twitter(finder: ModuleFinder, module: Module) -> None:
"""The twitter module tries to load the simplejson, json and django.utils
module in an attempt to locate any module that will implement the
necessary protocol; ignore these modules if they cannot be found.
"""
module.ignore_names.update(["json", "simplejson", "django.utils"])
def load_uvloop(finder: ModuleFinder, module: Module) -> None:
"""The uvloop module implicitly loads an extension module."""
finder.include_module("uvloop._noop")
def load_win32api(finder: ModuleFinder, module: Module) -> None:
"""The win32api module implicitly loads the pywintypes module; make sure
this happens.
"""
finder.exclude_dependent_files(module.file)
finder.include_module("pywintypes")
def load_win32com(finder: ModuleFinder, module: Module) -> None:
"""The win32com package manipulates its search path at runtime to include
the sibling directory called win32comext; simulate that by changing the
search path in a similar fashion here.
"""
module.path.append(module.file.parent.parent / "win32comext")
def load_win32file(finder: ModuleFinder, module: Module) -> None:
"""The win32file module implicitly loads the pywintypes and win32timezone
module; make sure this happens.
"""
finder.include_module("pywintypes")
finder.include_module("win32timezone")
def load_wx_lib_pubsub_core(finder: ModuleFinder, module: Module) -> None:
"""The wx.lib.pubsub.core module modifies the search path which cannot
be done in a frozen application in the same way; modify the module
search path here instead so that the right modules are found; note
that this only works if the import of wx.lib.pubsub.setupkwargs
occurs first.
"""
module.path.insert(0, module.file.parent / "kwargs")
def load_xml_etree_cElementTree(finder: ModuleFinder, module: Module) -> None:
"""The xml.etree.cElementTree module implicitly loads the
xml.etree.ElementTree module; make sure this happens.
"""
finder.include_module("xml.etree.ElementTree")
def load_yaml(finder: ModuleFinder, module: Module) -> None:
"""PyYAML requires its metadata."""
module.update_distribution("PyYAML")
def load_zipimport(finder: ModuleFinder, module: Module) -> None:
"""The module shouldn't import internal names."""
module.exclude_names.add("_frozen_importlib")
module.exclude_names.add("_frozen_importlib_external")
def load_zmq(finder: ModuleFinder, module: Module) -> None:
"""The zmq package loads zmq.backend.cython dynamically and links
dynamically to zmq.libzmq or shared lib. Tested in pyzmq 16.0.4 (py36),
19.0.2 (MSYS2 py39) up to 22.2.1 (from pip and from conda).
"""
finder.include_package("zmq.backend.cython")
if IS_WINDOWS or IS_MINGW:
# For pyzmq 22 the libzmq dependencies are located in
# site-packages/pyzmq.libs
libzmq_folder = "pyzmq.libs"
libs_dir = module.path[0].parent / libzmq_folder
if libs_dir.exists():
finder.include_files(libs_dir, Path("lib", libzmq_folder))
# Include the bundled libzmq library, if it exists
with suppress(ImportError):
finder.include_module("zmq.libzmq")
finder.exclude_module("zmq.tests")
def load_zope_component(finder: ModuleFinder, module: Module) -> None:
"""The zope.component package requires the presence of the pkg_resources
module but it uses a dynamic, not static import to do its work.
"""
finder.include_module("pkg_resources")
def missing_backports_zoneinfo(finder: ModuleFinder, caller: Module) -> None:
"""The backports.zoneinfo module should be a drop-in replacement for the
Python 3.9 standard library module zoneinfo.
"""
if sys.version_info >= (3, 9):
caller.ignore_names.add("backports.zoneinfo")
def missing_gdk(finder: ModuleFinder, caller: Module) -> None:
"""The gdk module is buried inside gtk so there is no need to concern
ourselves with an error saying that it cannot be found.
"""
caller.ignore_names.add("gdk")
def missing_ltihooks(finder: ModuleFinder, caller: Module) -> None:
"""The ltihooks module is not necessairly present so ignore it when it
cannot be found.
"""
caller.ignore_names.add("ltihooks")
def missing_jnius(finder: ModuleFinder, caller: Module) -> None:
"""The jnius module is present on java and android."""
if not sys.platform.startswith("java"):
caller.ignore_names.add("jnius")
def missing__manylinux(finder: ModuleFinder, caller: Module) -> None:
"""The _manylinux module is a flag."""
caller.ignore_names.add("_manylinux")
def missing_os_path(finder: ModuleFinder, caller: Module) -> None:
"""The os.path is an alias to posixpath or ntpath."""
caller.ignore_names.add("os.path")
def missing_readline(finder: ModuleFinder, caller: Module) -> None:
"""The readline module is not normally present on Windows but it also may
be so instead of excluding it completely, ignore it if it can't be found.
"""
if IS_WINDOWS:
caller.ignore_names.add("readline")
def missing_six_moves(finder: ModuleFinder, caller: Module) -> None:
"""The six module creates fake modules."""
caller.ignore_names.add("six.moves")
def missing_winreg(finder: ModuleFinder, caller: Module) -> None:
"""The winreg module is present on Windows only."""
if not IS_WINDOWS:
caller.ignore_names.add("winreg")
def missing_zoneinfo(finder: ModuleFinder, caller: Module) -> None:
"""The zoneinfo module is present in Python 3.9+ standard library."""
if sys.version_info < (3, 9):
caller.ignore_names.add("zoneinfo")

View File

@@ -0,0 +1,43 @@
"""Helper functions for hooks."""
from __future__ import annotations
from types import CodeType
from typing import TYPE_CHECKING
from cx_Freeze.common import code_object_replace_function
if TYPE_CHECKING:
from cx_Freeze.module import Module
def replace_delvewheel_patch(
module: Module, libs_name: str | None = None
) -> None:
"""Replace delvewheel injections of code to not find for module.libs
directory.
"""
code = module.code
if code is None:
return
if libs_name is None:
libs_name = f"{module.name}.libs"
delvewheel_func_names = "_delvewheel_init_patch_", "_delvewheel_patch_"
consts = list(code.co_consts)
for constant in consts:
if isinstance(constant, CodeType):
name = constant.co_name
if name.startswith(delvewheel_func_names):
source = f"""\
def {name}():
import os, sys
libs_dir = os.path.join(
sys.frozen_dir, "lib", "{libs_name}"
)
if os.path.isdir(libs_dir):
os.add_dll_directory(libs_dir)
"""
code = code_object_replace_function(code, name, source)
break
module.code = code

Some files were not shown because too many files have changed in this diff Show More