Skip to content

Commit

Permalink
build: update pyinstaller to 4.3
Browse files Browse the repository at this point in the history
Hit following errors when build on RHEL8:

pyinstaller/pyinstaller#5540
Signed-off-by: Li Xi <pkuelelixi@163.com>
  • Loading branch information
LiXi-storage committed Jun 30, 2021
1 parent 325121f commit b5a84fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pybuild/coral_build.py
Expand Up @@ -19,10 +19,10 @@

# The url of pyinstaller tarball. Need to update together with
# PYINSTALLER_TARBALL_SHA1SUM
PYINSTALLER_TARBALL_URL = "https://github.com/pyinstaller/pyinstaller/releases/download/v4.2/PyInstaller-4.2.tar.gz"
PYINSTALLER_TARBALL_URL = "https://github.com/pyinstaller/pyinstaller/releases/download/v4.3/pyinstaller-4.3.tar.gz"
# The sha1sum of pyinstaller tarball. Need to update together with
# PYINSTALLER_TARBALL_URL
PYINSTALLER_TARBALL_SHA1SUM = "bac8d46737876468d7be607a44b90debd60422b5"
PYINSTALLER_TARBALL_SHA1SUM = "972f24ef11cf69875daa2ebd4804c5f505c0fec8"
# The url of pdsh tarball. Need to update together with
# PDSH_TARBALL_SHA1SUM
PDSH_TARBALL_URL = "https://github.com/chaos/pdsh/releases/download/pdsh-2.34/pdsh-2.34.tar.gz"
Expand Down
4 changes: 3 additions & 1 deletion pycoral/utils.py
Expand Up @@ -154,7 +154,9 @@ def cj_run_start(self):
"""
Start to run the command
"""
# pylint: disable=consider-using-with
# RHEL8 build would fail without bad-option-value since it does not
# understand consider-using-with.
# pylint: disable=bad-option-value,consider-using-with
if self.cj_started:
return -1

Expand Down

0 comments on commit b5a84fb

Please sign in to comment.