Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
beem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
beem
Commits
0b274e62
Commit
0b274e62
authored
6 years ago
by
Holger Nahrstaedt
Browse files
Options
Downloads
Patches
Plain Diff
Fix missing websocket dir for py36
parent
0053b756
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
beempy-onedir.spec
+11
-2
11 additions, 2 deletions
beempy-onedir.spec
beempy-onefile.spec
+12
-2
12 additions, 2 deletions
beempy-onefile.spec
with
23 additions
and
4 deletions
beempy-onedir.spec
+
11
−
2
View file @
0b274e62
...
@@ -4,17 +4,26 @@ import os
...
@@ -4,17 +4,26 @@ import os
import
glob
import
glob
import
platform
import
platform
from
PyInstaller.utils.hooks
import
exec_statement
from
PyInstaller.utils.hooks
import
exec_statement
import
websocket
from
os.path
import
join
,
dirname
,
basename
block_cipher
=
None
block_cipher
=
None
os_name
=
platform
.
system
()
os_name
=
platform
.
system
()
binaries
=
[]
binaries
=
[]
data_files
=
[]
websocket_lib_path
=
dirname
(
websocket
.
__file__
)
websocket_cacert_file_path
=
join
(
websocket_lib_path
,
'
cacert.pem
'
)
analysis_data
=
[
# For websocket library to find "cacert.pem" file, it must be in websocket
# directory inside of distribution directory.
# This line can be removed once PyInstaller adds hook-websocket.py
(
websocket_cacert_file_path
,
join
(
'
.
'
,
basename
(
websocket_lib_path
)))
]
a
=
Analysis
([
'
beem/cli.py
'
],
a
=
Analysis
([
'
beem/cli.py
'
],
pathex
=
[
'
beem
'
],
pathex
=
[
'
beem
'
],
binaries
=
binaries
,
binaries
=
binaries
,
datas
=
data_files
,
datas
=
analysis_data
,
hiddenimports
=
[
'
scrypt
'
,
'
websocket
'
],
hiddenimports
=
[
'
scrypt
'
,
'
websocket
'
],
hookspath
=
[],
hookspath
=
[],
runtime_hooks
=
[],
runtime_hooks
=
[],
...
...
This diff is collapsed.
Click to expand it.
beempy-onefile.spec
+
12
−
2
View file @
0b274e62
...
@@ -4,17 +4,27 @@ import os
...
@@ -4,17 +4,27 @@ import os
import
glob
import
glob
import
platform
import
platform
from
PyInstaller.utils.hooks
import
exec_statement
from
PyInstaller.utils.hooks
import
exec_statement
import
websocket
from
os.path
import
join
,
dirname
,
basename
block_cipher
=
None
block_cipher
=
None
os_name
=
platform
.
system
()
os_name
=
platform
.
system
()
binaries
=
[]
binaries
=
[]
data_files
=
[]
websocket_lib_path
=
dirname
(
websocket
.
__file__
)
websocket_cacert_file_path
=
join
(
websocket_lib_path
,
'
cacert.pem
'
)
analysis_data
=
[
# For websocket library to find "cacert.pem" file, it must be in websocket
# directory inside of distribution directory.
# This line can be removed once PyInstaller adds hook-websocket.py
(
websocket_cacert_file_path
,
join
(
'
.
'
,
basename
(
websocket_lib_path
)))
]
a
=
Analysis
([
'
beem/cli.py
'
],
a
=
Analysis
([
'
beem/cli.py
'
],
pathex
=
[
'
beem
'
],
pathex
=
[
'
beem
'
],
binaries
=
binaries
,
binaries
=
binaries
,
datas
=
data_files
,
datas
=
analysis_data
,
hiddenimports
=
[
'
scrypt
'
,
'
websocket
'
],
hiddenimports
=
[
'
scrypt
'
,
'
websocket
'
],
hookspath
=
[],
hookspath
=
[],
runtime_hooks
=
[],
runtime_hooks
=
[],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment