Skip to content

Commit 63f27dd

Browse files
authored
{Packaging} Install bz2 module in embedded Python on Linux (#32163)
1 parent 83b64f6 commit 63f27dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/release/debian/build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2121
# Update APT packages
2222
apt-get update
2323
# uuid-dev is used to build _uuid module: https://github.com/python/cpython/pull/3796
24-
apt-get install -y libssl-dev libffi-dev python3-dev zlib1g-dev uuid-dev wget debhelper
24+
# libbz2-dev is used to install bz2 module: https://github.com/Azure/azure-cli/pull/32163
25+
apt-get install -y libssl-dev libffi-dev python3-dev zlib1g-dev uuid-dev wget debhelper libbz2-dev
2526
# Git is not strictly necessary, but it would allow building an experimental package
2627
# with dependency which is currently only available in its git repo feature branch.
2728
apt-get install -y git

0 commit comments

Comments
 (0)