File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed
Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 3535 # update to latest pip, check version
3636 pip install --upgrade pip
3737 pip --version
38- if ! python -c "import distutils" 2> /dev/null; then
39- # we need setuptools for distutils in Python 3.12+, needed for python setup.py sdist
40- pip install --upgrade setuptools
41- fi
38+ pip install setuptools
4239
4340 # for modules tool
4441 APT_PKGS="lua5.3 liblua5.3-dev lua-filesystem lua-posix tcl tcl-dev"
Original file line number Diff line number Diff line change @@ -127,10 +127,8 @@ jobs:
127127 pip install --upgrade pip
128128 pip --version
129129 pip install -r requirements.txt
130- if ! python -c "import distutils" 2> /dev/null; then
131- # we need setuptools for distutils in Python 3.12+, needed for python setup.py sdist
132- pip install --upgrade setuptools
133- fi
130+ pip install setuptools
131+
134132 # git config is required to make actual git commits (cfr. tests for GitRepository)
135133 git config --global user.name "Github Actions"
136134 git config --global user.email "actions@github.com"
You can’t perform that action at this time.
0 commit comments