Skip to content

Commit db675d3

Browse files
committed
Remove explicit installation of setuptools from CI
1 parent 7923b16 commit db675d3

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

.github/workflows/eb_command.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@ jobs:
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
4238
4339
# for modules tool
4440
APT_PKGS="lua5.3 liblua5.3-dev lua-filesystem lua-posix tcl tcl-dev"

.github/workflows/unit_tests.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,6 @@ jobs:
8484
pip install --upgrade pip
8585
pip --version
8686
pip install -r requirements.txt
87-
if ! python -c "import distutils" 2> /dev/null; then
88-
# we need setuptools for distutils in Python 3.12+, needed for python setup.py sdist
89-
pip install --upgrade setuptools
90-
fi
9187
# git config is required to make actual git commits (cfr. tests for GitRepository)
9288
git config --global user.name "Github Actions"
9389
git config --global user.email "actions@github.com"

0 commit comments

Comments
 (0)