Skip to content

Commit

Permalink
Add missing scrypt to pyinstaller and prepare for missing witness api
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Oct 23, 2018
1 parent f9413e8 commit 11cf5dd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
@@ -1,5 +1,10 @@
Changelog
=========
0.20.9
------
* add missing scrypt to the pyinstaller
* prepare for removed witness api in rpc nodes

0.20.8
------
* fix hardfork property in steem
Expand Down
2 changes: 1 addition & 1 deletion beempy-onedir.spec
Expand Up @@ -25,7 +25,7 @@ a = Analysis(['beem/cli.py'],
pathex=['beem'],
binaries=binaries,
datas=analysis_data,
hiddenimports=['scrypt', 'websocket'],
hiddenimports=['scrypt', '_scrypt', 'websocket', 'pylibscrypt', 'cffi', 'cryptography.hazmat.backends.openssl', 'cryptography']],
hookspath=[],
runtime_hooks=[],
excludes=['matplotlib', 'scipy', 'pandas', 'numpy', 'PyQt5', 'tkinter'],
Expand Down
2 changes: 1 addition & 1 deletion beempy-onefile.spec
Expand Up @@ -26,7 +26,7 @@ a = Analysis(['beem/cli.py'],
pathex=['beem'],
binaries=binaries,
datas=analysis_data,
hiddenimports=['scrypt', 'websocket'],
hiddenimports=['scrypt', '_scrypt', 'websocket', 'pylibscrypt', 'cffi', 'cryptography.hazmat.backends.openssl', 'cryptography'],
hookspath=[],
runtime_hooks=[],
excludes=['matplotlib', 'scipy', 'pandas', 'numpy', 'PyQt5', 'tkinter'],
Expand Down

0 comments on commit 11cf5dd

Please sign in to comment.