Skip to content

Commit dc41e97

Browse files
committed
update setuptools to newest version (#45)
1 parent 6070df4 commit dc41e97

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

installer/deb/laps4linux-client/DEBIAN/postinst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ DIR=/usr/share/laps4linux-client
1010

1111
# create system-wide venv and install python libraries via pip
1212
python3 -m venv --system-site-packages $DIR/venv
13+
$DIR/venv/bin/pip3 install --upgrade setuptools==80.8.0
1314
$DIR/venv/bin/pip3 install --upgrade $DIR[barcode]
1415
$DIR/venv/bin/pip3 uninstall -y pip
1516

installer/deb/laps4linux-runner/DEBIAN/postinst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ DIR=/usr/share/laps4linux-runner
1010

1111
# create system-wide venv and install python libraries via pip
1212
python3 -m venv --system-site-packages $DIR/venv
13+
$DIR/venv/bin/pip3 install --upgrade setuptools==80.8.0
1314
$DIR/venv/bin/pip3 install --upgrade $DIR
1415
$DIR/venv/bin/pip3 uninstall -y pip

installer/rpm/rpmbuild/SPECS/laps4linux-client.spec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ if [[ "$(python3 --version)" == "Python 3.0"* ]] \
5353
fi
5454
fi
5555
$PYTHON_BIN -m venv --system-site-packages --clear $DIR/venv
56+
$DIR/venv/bin/pip3 install --upgrade setuptools==80.8.0
5657
$DIR/venv/bin/pip3 install --upgrade pip==25.0.0
5758
$DIR/venv/bin/pip3 install --upgrade $DIR[barcode]
5859
$DIR/venv/bin/pip3 uninstall -y pip

installer/rpm/rpmbuild/SPECS/laps4linux-runner.spec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ if [[ "$(python3 --version)" == "Python 3.0"* ]] \
5353
fi
5454
fi
5555
$PYTHON_BIN -m venv --system-site-packages --clear $DIR/venv
56+
$DIR/venv/bin/pip3 install --upgrade setuptools==80.8.0
5657
$DIR/venv/bin/pip3 install --upgrade pip==25.0.0
5758
$DIR/venv/bin/pip3 install --upgrade $DIR
5859
$DIR/venv/bin/pip3 uninstall -y pip

0 commit comments

Comments
 (0)