Skip to content

Commit

Permalink
Update to use bdbag-1.1.3, fix pyinstaller Mac spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedarcy committed Jan 26, 2018
1 parent 9e03eae commit d51e18d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions BDBag-mac.spec
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ a = Analysis(['bdbag_gui/__main__.py'],

pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)

exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='BDBag',
debug=False,
strip=False,
upx=True,
console=False,
icon='bdbag_gui/images/bag.ico')

coll = COLLECT(exe,
a.binaries,
a.zipfiles,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
url='https://github.com/ini-bdds/bdbag_gui/',
maintainer='USC Information Sciences Institute, Informatics Systems Research Division',
maintainer_email='isrd-support@isi.edu',
version="0.2.2",
version="0.2.3",
packages=find_packages(),
entry_points={
'gui_scripts': [
Expand All @@ -26,7 +26,7 @@
'sys',
'logging',
'PyQt5'],
install_requires=['bdbag>=1.1.2'],
install_requires=['bdbag>=1.1.3'],
license='GNU GPL 3.0',
classifiers=[
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit d51e18d

Please sign in to comment.