From ce3b306ceee3c8f2679f45c0368f72b411f23b10 Mon Sep 17 00:00:00 2001 From: Maciej Urbanski Date: Tue, 25 Jul 2023 21:48:10 +0200 Subject: [PATCH] include `full` extras deps into bundle --- noxfile.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 756c994b3..e519a8f98 100644 --- a/noxfile.py +++ b/noxfile.py @@ -55,7 +55,8 @@ ] REQUIREMENTS_BUILD = ['setuptools>=20.2'] REQUIREMENTS_BUNDLE = [ - 'pyinstaller~=5.12', + 'pyinstaller~=5.13', + 'pyinstaller-hooks-contrib>=2023.6', "patchelf-wrapper==1.2.0;platform_system=='Linux'", "staticx~=0.13.9;platform_system=='Linux'", ] @@ -258,7 +259,7 @@ def bundle(session: nox.Session): """Bundle the distribution.""" session.run('pip', 'install', *REQUIREMENTS_BUNDLE, **run_kwargs) session.run('rm', '-rf', 'build', 'dist', 'b2.egg-info', external=True, **run_kwargs) - install_myself(session, ['license']) + install_myself(session, ['license', 'full']) session.run('b2', 'license', '--dump', '--with-packages', **run_kwargs) session.run('pyinstaller', *session.posargs, 'b2.spec', **run_kwargs)