Skip to content

Commit

Permalink
Upgrade pip (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt authored Nov 15, 2023
1 parent a724a0b commit 15285b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion features/src/utils/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "devcontainer-utils",
"id": "utils",
"version": "23.12.1",
"version": "23.12.2",
"description": "A feature to install RAPIDS devcontainer utility scripts",
"containerEnv": {
"BASH_ENV": "/etc/bash.bash_env"
Expand Down
5 changes: 5 additions & 0 deletions features/src/utils/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ check_packages \
bash-completion \
ca-certificates ;

# upgrade pip
if type python >/dev/null 2>&1; then
python -m pip install -U pip;
fi

# Install yq if not installed
if ! type yq >/dev/null 2>&1; then
YQ_VERSION=latest;
Expand Down

0 comments on commit 15285b7

Please sign in to comment.