We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 332a773 commit b339ba2Copy full SHA for b339ba2
sources/install/package_web.sh
@@ -279,7 +279,13 @@ function install_patator() {
279
cd /opt/tools/patator || exit
280
python3.13 -m venv --system-site-packages ./venv
281
source ./venv/bin/activate
282
- pip3 install -r requirements.txt
+ # Temporary fix for 'setuptools' having removed the 'pkg_resources' library, see https://github.com/pypa/setuptools/issues/5174
283
+ local temp_fix_limit="2026-08-10"
284
+ if check_temp_fix_expiry "$temp_fix_limit"; then
285
+ echo 'setuptools<82' > build-constraints.txt
286
+ pip3 install --build-constraint build-constraints.txt -r requirements.txt
287
+ fi
288
+ #pip3 install -r requirements.txt
289
deactivate
290
add-aliases patator
291
add-history patator
0 commit comments