- Added a list of all installed packages to
licenses/packages.txt
. - Fixed executable's hardcoded search path for
libpython
on macOS.
- Fixed bug where embedded_python will only use local
zlib
instead of thetool_requires
one.
- Fixed symlink re-creation, in case already existing symlink was invalid
- Updated to conan v2 methods
- Fixed license collection failing with some packages on Windows (bumped default
pip-licenses
to v3.5.4 with the bug fix) - Updated default recipe options to
pip
v22.1.2,setuptools
v63.2.0, andwheel
v0.37.1 to improve compatibility with the latest PyPI packages
- Fixed build with Python >= 3.9.11 and >= 3.10.3 on Windows (the installer changed)
- Fixed configuration with the Conan
cmake_find_package
generator - Fixed Conan's
.run(..., run_environment=True)
not setting binary/library paths
- Worked around a CPython issue that prevented compilation of Python < 3.9.8 with clang 13: https://bugs.python.org/issue45405
- The recipe no longer depends on
compiler.cppstd
andcompiler.libcxx
so C++ settings changes will not cause a package rebuild
- Fixed missing
zlib
module on some Linux systems (addedzlib
to the list of build requirements)
- The versions of
setuptools
andwheel
used to build the embedded environment are now user-configurable via thesetuptools_version
andwheel_version
recipe options
- The versions of
pip
andpip-licenses
used to build the embedded environment are now user-configurable via thepip_version
andpip_licenses_version
recipe options. If not given, they default topip==21.2.4
andpip-licenses==3.5.3
. - Fixed issue with
pip-licenses
being incompatible with the newestpip
version - Fixed
libffi
segfault on macOS: use CPython built-inlibffi
instead of the Conan version
- Fixed portability issues on Linux: use more dependencies from Conan instead of the host system
- Fixed missing
lzma
module on some Linux systems (addedxz_utils
to the list of build requirements)
- Fixed
packages
option breaking if comments are present in therequirements.txt
file
- Fixed very slow
find_package(Python)
on Windows
- Added support for Linux and macOS with a couple of caveats to be resolved later:
- The standard library is not pre-compiled and zipped so it takes up more space than the Windows variant
- The environment is not as locked down as the Windows variant:
pip
is still accessible in the final package
- The
packages
option now accepts the full contents of arequirements.txt
file. Previously, the contents needed to be converted into a space-separated list (.replace("\n", " ")
) and stripped of comments and markers. - CMake will now automatically call
find_package(Python)
and ensure that the embedded distribution is found instead of a system-installed Python. Previously, consumer projects needed to do this manually.
- Fixed data and scripts not being installed with certain packages (e.g.
nbconvert>=6.0
) - Updated the embedded
setuptools
to v53.0.0
- It's now possible to package any version of the embedded Python, independent of the version on the host system.
- Updated to
pip-licenses
v2.2.0:--with-license-file
now finds British-styleLICENCE
files.
- Python's
LICENSE.txt
is now placed into thelicenses
directory. - The licenses of all installed packages are now gathered using
pip-licenses
and written tolicenses/package_licenses.txt
.
Initial release