Skip to content

Commit

Permalink
ci(*:skip) Upgrade pip and setuptools (#3835)
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Steiner <[email protected]>
  • Loading branch information
Robert-Steiner authored Jul 17, 2024
1 parent e737515 commit d10d6b8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ RUN apt-get install -y curl wget gnupg python3 python-is-python3 python3-pip git
build-essential tmux vim

RUN python -m pip install \
pip==24.0.0 \
setuptools==69.5.1 \
pip==24.1.2 \
setuptools==70.3.0 \
poetry==1.7.1

USER $USERNAME
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/bootstrap/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ inputs:
default: 3.8
pip-version:
description: "Version of pip to be installed using pip"
default: 24.0.0
default: 24.1.2
setuptools-version:
description: "Version of setuptools to be installed using pip"
default: 69.5.1
default: 70.3.0
poetry-version:
description: "Version of poetry to be installed using pip"
default: 1.7.1
Expand Down
4 changes: 2 additions & 2 deletions dev/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ cd "$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"/../
./dev/rm-caches.sh

# Upgrade/install spcific versions of `pip`, `setuptools`, and `poetry`
python -m pip install -U pip==24.0.0
python -m pip install -U setuptools==69.5.1
python -m pip install -U pip==24.1.2
python -m pip install -U setuptools==70.3.0
python -m pip install -U poetry==1.7.1

# Use `poetry` to install project dependencies
Expand Down

0 comments on commit d10d6b8

Please sign in to comment.