Skip to content

Commit 1e32f74

Browse files
committed
Do not install unnecessary CI dependencies using pip
The only dependency we need from pip is PyKMIP so let's avoid installing a bunch of other stuff we do not use.
1 parent 59cc8b5 commit 1e32f74

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ci_scripts/macos-deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ DEPS=(
2323
brew update
2424
brew install ${DEPS[@]}
2525

26-
pip3 install meson pykmip cryptography setuptools wheel
26+
pip3 install pykmip
2727
cpan -T IPC::Run JSON
2828

2929
# OpenBao

ci_scripts/ubuntu-deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ sudo apt-get update
4949
sudo apt-get install -y ${DEPS[@]}
5050

5151
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
52-
pip3 install meson pykmip cryptography setuptools wheel
52+
pip3 install pykmip
5353

5454
# OpenBao
5555
wget https://github.com/openbao/openbao/releases/download/v2.4.3/bao_2.4.3_linux_$(dpkg --print-architecture).deb

0 commit comments

Comments
 (0)