Skip to content

Commit

Permalink
include full extras deps into bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
mjurbanski-reef authored and mpnowacki-reef committed Aug 17, 2023
1 parent 7c6f460 commit ce3b306
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'",
]
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit ce3b306

Please sign in to comment.