Project History¶
Work on PyOxidizer started in November 2018 by Gregory Szorc.
Blog Posts¶
C Extension Support in PyOxidizer (2019-06-30)
Building Standalone Python Applications with PyOxidizer (2019-06-24)
PyOxidizer Support for Windows (2019-01-06)
Faster In-Memory Python Module Importing (2018-12-28)
Distributing Standalone Python Applications (2018-12-18)
Version History¶
0.6.0¶
Released February 12, 2020.
Backwards Compatibility Notes¶
The
default_python_distribution()Starlark function now accepts aflavorargument denoting the distribution flavor.The
pyembedcrate no longer includes the auto-generated default configuration file. Instead, it is consumed by the application that instantiates a Python interpreter.Rust projects for the main executable now utilize and require a Cargo build script so metadata can be passed from
pyembedto the project that is consuming it.The
pyembedcrate is no longer added to created Rust projects. Instead, the generatedCargo.tomlwill reference a version of thepyembedcrate identical to thePyOxidizerversion currently running. Or ifpyoxidizeris running from a Git checkout of the canonicalPyOxidizerGit repository, a local filesystem path will be used.The fields of
EmbeddedPythonConfigandpyembed::PythonConfighave been renamed and reordered to align with Python 3.8’s config API naming. This was done for the Starlark type in version 0.5. We have made similar changes to 0.6 so naming is consistent across the various types.
Bug Fixes¶
Module names without a
.are now properly recognized when scanning the filesystem for Python resources and a package allow list is used (#223). Previously, if filtering scanned resources through an explicit list of allowed packages, the top-level module/package without a dot in its full name would not be passed through the filter.
New Features¶
The
PythonDistribution()Starlark function now accepts aflavorargument to denote the distribution type. This allows construction of alternate distribution types.The
default_python_distribution()Starlark function now accepts aflavorargument which can be set towindows_embeddableto return a distribution based on the zip file distributions published by the official CPython project.The
pyembedcrate and generated Rust projects now have variousbuild-mode-*feature flags to control how build artifacts are built. See Rust Projects for more.The
pyembedcrate can now be built standalone, without being bound to a specificPyOxidizerconfiguration.The
register_target()Starlark function now accepts an optionaldefault_build_scriptargument to define the default target when evaluating in Rust build script mode.The
pyembedcrate now builds against publishedcpythonandpython3-syscrates instead of a a specific Git commit.Embedded Python interpreters can now be configured to run a file specified by a filename. See the
run_fileargument of PythonInterpreterConfig(...)`.
Other Relevant Changes¶
Rust internals have been overhauled to use traits to represent various types, namely Python distributions. The goal is to allow different Python distribution flavors to implement different logic for building binaries.
The
pyembedcrate’sbuild.rshas been tweaked so it can support calling out topyoxidizer. It also no longer has a build dependency onpyoxidizer.
0.5.1¶
Released January 26, 2020.
Bug Fixes¶
Fixed bad Starlark example for building
blackin docs.Remove resources attached to packages that don’t exist. (This was a regression in 0.5.)
Warn on failure to annotate a package. (This was a regression in 0.5.)
Building embedded Python resources now emits warnings when
__file__is seen. (This was a regression in 0.5.)Missing parent packages are now automatically added when constructing embedded resources. (This was a regression in 0.5.)
0.5.0¶
Released January 26, 2020.
General Notes¶
This release of PyOxidizer is significant rewrite of the previous version. The impetus for the rewrite is to transition from TOML to Starlark configuration files. The new configuration file format should allow vastly greater flexibility for building applications and will unlock a world of new possibilities.
The transition to Starlark configuration files represented a shift from static configuration to something more dynamic. This required refactoring a ton of code.
As part of refactoring code, we took the opportunity to shore up lots of the code base. PyOxidizer was the project author’s first real Rust project and a lot of bad practices (such as use of .unwrap()/panics) were prevalent. The code mostly now has proper error handling. Another new addition to the code is unit tests. While coverage still isn’t great, we now have tests performing meaningful packaging activities. So regressions should hopefully be less common going forward.
Because of the scale of the rewritten code in this release, it is expected that there are tons of bugs of regressions. This will likely be a transitional release with a more robust release to follow.
Backwards Compatibility Notes¶
Support for building distributions/installers has been temporarily dropped.
Support for installing license files has been temporarily dropped.
Python interpreter configuration setting names have been changed to reflect names from Python 3.8’s interpreter initialization API.
.egg-infodirectories are now ignored when scanning for Python resources on the filesystem (matching the behavior for.dist-infodirectories).The
pyoxidizer initsub-command has been renamed toinit-rust-project.The
pyoxidizer app-pathsub-command has been removed.Support for building distributions has been removed.
The minimum Rust version to build has been increased from 1.31 to 1.36. This is mainly due to requirements from the
starlarkcrate. We could potentially reduce the minimum version requirements again with minimal changes to 3rd party crates.PyOxidizer configuration files are now Starlark instead of TOML files. The default file name is
pyoxidizer.bzlinstead ofpyoxidizer.toml. All existing configuration files will need to be ported to the new format.
Bug Fixes¶
The
replrun mode now properly exits with a non-zero exit code if an error occurs.Compiled C extensions now properly honor the
ext_packageargument passed tosetup(), resulting in extensions which properly have the package name in their extension name (#26).
New Features¶
A glob(include, exclude=None, strip_prefix=None) function has been added to config files to allow referencing existing files on the filesystem.
The in-memory
MetaPathFindernow implementsfind_module().A
pyoxidizer init-config-filecommand has been implemented to create just apyoxidizer.bzlconfiguration file.A
pyoxidizer python-distribution-infocommand has been implemented to print information about a Python distribution archive.The
EmbeddedPythonConfig()config function now accepts alegacy_windows_stdioargument to control the value ofPy_LegacyWindowsStdioFlag(#190).The
EmbeddedPythonConfig()config function now accepts alegacy_windows_fs_encodingargument to control the value ofPy_LegacyWindowsFSEncodingFlag.The
EmbeddedPythonConfig()config function now accepts anisolatedargument to control the value ofPy_IsolatedFlag.The
EmbeddedPythonConfig()config function now accepts ause_hash_seedargument to control the value ofPy_HashRandomizationFlag.The
EmbeddedPythonConfig()config function now accepts aninspectargument to control the value ofPy_InspectFlag.The
EmbeddedPythonConfig()config function now accepts aninteractiveargument to control the value ofPy_InteractiveFlag.The
EmbeddedPythonConfig()config function now accepts aquietargument to control the value ofPy_QuietFlag.The
EmbeddedPythonConfig()config function now accepts averboseargument to control the value ofPy_VerboseFlag.The
EmbeddedPythonConfig()config function now accepts aparser_debugargument to control the value ofPy_DebugFlag.The
EmbeddedPythonConfig()config function now accepts abytes_warningargument to control the value ofPy_BytesWarningFlag.The
Stdlib()packaging rule now now accepts an optionalexcludeslist of modules to ignore. This is useful for removing unnecessary Python packages such asdistutils,pip, andensurepip.The
PipRequirementsFile()andPipInstallSimple()packaging rules now accept an optionalextra_envdict of extra environment variables to set when invokingpip install.The
PipRequirementsFile()packaging rule now accepts an optionalextra_argslist of extra command line arguments to pass topip install.
Other Relevant Changes¶
PyOxidizer no longer requires a forked version of the
rust-cpythonproject (thepython3-sysandcpythoncrates. All changes required by PyOxidizer are now present in the official project.
0.4.0¶
Released October 27, 2019.
Backwards Compatibility Notes¶
The
setup-py-installpackaging rule now has itspackage_pathevaluated relative to the PyOxidizer config file path rather than the current working directory.
Bug Fixes¶
Windows now explicitly requires dynamic linking against
msvcrt. Previously, this wasn’t explicit. And sometimes linking the final executable would result in unresolved symbol errors because the Windows Python distributions used external linkage of CRT symbols and for some reason Cargo wasn’t dynamically linking the CRT.Read-only files in Python distributions are now made writable to avoid future permissions errors (#123).
In-memory
InspectLoader.get_source()implementation no longer errors due to passing amemoryviewto a function that can’t handle it (#134).In-memory
ResourceReadernow properly handles multiple resources (#128).
New Features¶
Added an
app-pathcommand that prints the path to a packaged application. This command can be useful for tools calling PyOxidizer, as it will emit the path containing the packaged files without forcing the caller to parse command output.The
setup-py-installpackaging rule now has anexcludesoption that allows ignoring specific packages or modules..pyfiles installed into app-relative locations now have corresponding.pycbytecode files written.The
setup-py-installpackaging rule now has anextra_global_argumentsoption to allow passing additional command line arguments to thesetup.pyinvocation.Packaging rules that invoke
piporsetup.pywill now set aPYOXIDIZER=1environment variable so Python code knows at packaging time whether it is running in the context of PyOxidizer.The
setup-py-installpackaging rule now has anextra_envoption to allow passing additional environment variables tosetup.pyinvocations.[[embedded_python_config]]now supports asys_frozenflag to control settingsys.frozen = True.[[embedded_python_config]]now supports asys_meipassflag to control settingsys._MEIPASS = <exe directory>.Default Python distribution upgraded to 3.7.5 (from 3.7.4). Various dependency packages also upgraded to latest versions.
All Other Relevant Changes¶
Built extension modules marked as app-relative are now embedded in the finaly binary rather than being ignored.
0.3.0¶
Released on August 16, 2019.
Backwards Compatibility Notes¶
The
pyembed::PythonConfigstruct now has an additionalextra_extension_modulesfield.The default musl Python distribution now uses LibreSSL instead of OpenSSL. This should hopefully be an invisible change.
Default Python distributions now use CPython 3.7.4 instead of 3.7.3.
Applications are now built into directories named
apps/<app_name>/<target>/<build_type>rather thanapps/<app_name>/<build_type>. This enables builds for multiple targets to coexist in an application’s output directory.The
program_namefield from the[[embedded_python_config]]config section has been removed. At run-time, the current executable’s path is always used when callingPy_SetProgramName().The format of embedded Python module data has changed. The
pyembedcrate andpyoxidizerversions must match exactly or else thepyembedcrate will likely crash at run-time when parsing module data.
Bug Fixes¶
The
libeditextension variant for thereadlineextension should now link on Linux. Before, attempting to link a binary using this extension variant would result in missing symbol errors.The
setup-py-install[[packaging_rule]]now performs actions to appeasesetuptools, thus allowing installation of packages usingsetuptoolsto (hopefully) work without issue (#70).The
virtualenv[[packaging_rule]]now properly finds thesite-packagesdirectory on Windows (#83).The
filter-include[[packaging_rule]]no longer requires bothfilesandglob_filesbe defined (#88).import ctypesnow works on Windows (#61).The in-memory module importer now implements
get_resource_reader()instead ofget_resource_loader(). (The CPython documentation steered us in the wrong direction - https://bugs.python.org/issue37459.)The in-memory module importer now correctly populates
__package__in more cases than it did previously. Before, whether a module was a package was derived from the presence of afoo.barmodule. Now, a module will be identified as a package if the file providing it is named__init__. This more closely matches the behavior of Python’s filesystem based importer. (#53)
New Features¶
The default Python distributions have been updated. Archives are generally about half the size from before. Tcl/tk is included in the Linux and macOS distributions (but PyOxidizer doesn’t yet package the Tcl files).
Extra extension modules can now be registered with
PythonConfiginstances. This can be useful for having the application embedding Python provide its own extension modules without having to go through Python build mechanisms to integrate those extension modules into the Python executable parts.Built applications now have the ability to detect and use
terminfodatabases on the execution machine. This allows applications to interact with terminals properly. (e.g. the backspace key will now work in interactivepdbsessions). By default, applications on non-Windows platforms will look forterminfodatabases at well-known locations and attempt to load them.Default Python distributions now use CPython 3.7.4 instead of 3.7.3.
A warning is now emitted when a Python source file contains
__file__. This should help trace down modules using__file__.Added 32-bit Windows distribution.
New
pyoxidizer distributioncommand for producing distributable artifacts of applications. Currently supports building tar archives and.msiand.exeinstallers using the WiX Toolset.Libraries required by C extensions are now passed into the linker as library dependencies. This should allow C extensions linked against libraries to be embedded into produced executables.
pyoxidizer --verbosewill now pass verbose to invokedpipandsetup.pyscripts. This can help debug what Python packaging tools are doing.
All Other Relevant Changes¶
The list of modules being added by the Python standard library is no longer printed during rule execution unless
--verboseis used. The output was excessive and usually not very informative.
0.2.0¶
Released on June 30, 2019.
Backwards Compatibility Notes¶
Applications are now built into an
apps/<appname>/(debug|release)directory instead ofapps/<appname>. This allows debug and release builds to exist side-by-side.
Bug Fixes¶
Extracted
.eggdirectories in Python package directories should now have their resources detected properly and not as Python packages with the name*.egg.site-packagesdirectories are now recognized as Python resource package roots and no longer have their contents packaged under asite-packagesPython package.
New Features¶
Support for building and embedding C extensions on Windows, Linux, and macOS in many circumstances. See Native Extension Modules for support status.
pyoxidizer initnow accepts a--pip-installoption to pre-configure generatedpyoxidizer.tomlfiles with packages to install viapip. Combined with the--python-codeoption, it is now possible to createpyoxidizer.tomlfiles for a ready-to-use Python application!pyoxidizernow accepts a--verboseflag to make operations more verbose. Various low-level output is no longer printed by default and requires--verboseto see.
All Other Relevant Changes¶
Packaging now automatically creates empty modules for missing parent packages. This prevents a module from being packaged without its parent. This could occur with namespace packages, for example.
pip-install-simplerule now passes--no-binary :all:to pip.Cargo packages updated to latest versions.
0.1.3¶
Released on June 29, 2019.
Bug Fixes¶
Fix Python refcounting bug involving call to
PyImport_AddModule()whenmode = moduleevaluation mode is used. The bug would likely lead to a segfault when destroying the Python interpreter. (#31)Various functionality will no longer fail when running
pyoxidizerfrom a Git repository that isn’t the canonicalPyOxidizerrepository. (#34)
New Features¶
pyoxidizer initnow accepts a--python-codeoption to control which Python code is evaluated in the produced executable. This can be used to create applications that do not run a Python REPL by default.pip-install-simplepackaging rule now supportsexcludesfor excluding resources from packaging. (#21)pip-install-simplepackaging rule now supportsextra_argsfor adding parameters to the pip install command. (#42)
All Relevant Changes¶
Minimum Rust version decreased to 1.31 (the first Rust 2018 release). (#24)
Added CI powered by Azure Pipelines. (#45)
Comments in auto-generated
pyoxidizer.tomlhave been tweaked to improve understanding. (#29)
0.1.2¶
Released on June 25, 2019.
Bug Fixes¶
Honor
HTTP_PROXYandHTTPS_PROXYenvironment variables when downloading Python distributions. (#15)Handle BOM when compiling Python source files to bytecode. (#13)
All Relevant Changes¶
pyoxidizernow verifies the minimum Rust version meets requirements before building.
0.1.1¶
Released on June 24, 2019.
Bug Fixes¶
pyoxidizerbinaries built from crates should now properly refer to an appropriate commit/tag in PyOxidizer’s canonical Git repository in auto-generatedCargo.tomlfiles. (#11)
0.1¶
Released on June 24, 2019. This is the initial formal release of PyOxidizer.
The first pyoxidizer crate was published to crates.io.
New Features¶
Support for building standalone, single file executables embedding Python for 64-bit Windows, macOS, and Linux.
Support for importing Python modules from memory using zero-copy.
Basic Python packaging support.
Support for jemalloc as Python’s memory allocator.
pyoxidizerCLI command with basic support for managing project lifecycle.