Skip to content

Commit

Permalink
CI: Python Install Dependencies
Browse files Browse the repository at this point in the history
Update the Python install dependencies according to latest
docs. Setuptools had a breaking change for Python 3.12 and
we modernized accordingly.
  • Loading branch information
ax3l committed Aug 29, 2024
1 parent 4c305c8 commit ffe9236
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/dependencies/dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ sudo apt-get install -y --no-install-recommends\
python3 \
python3-pip

python3 -m pip install -U pip setuptools wheel
python3 -m pip install -U pip
python3 -m pip install -U build packaging setuptools wheel
3 changes: 2 additions & 1 deletion .github/workflows/dependencies/dependencies_clang6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ sudo apt-get install -y \
python3 \
python3-pip

python3 -m pip install -U pip setuptools wheel
python3 -m pip install -U pip
python3 -m pip install -U build packaging setuptools wheel
3 changes: 2 additions & 1 deletion .github/workflows/dependencies/dependencies_gcc10.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ sudo apt-get install -y --no-install-recommends \
python3 \
python3-pip

python3 -m pip install -U pip setuptools wheel
python3 -m pip install -U pip
python3 -m pip install -U build packaging setuptools wheel
3 changes: 2 additions & 1 deletion .github/workflows/dependencies/dependencies_nofortran.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ sudo apt-get install -y --no-install-recommends\
python3 \
python3-pip

python3 -m pip install -U pip setuptools wheel
python3 -m pip install -U pip
python3 -m pip install -U build packaging setuptools wheel

0 comments on commit ffe9236

Please sign in to comment.