You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# pcre was removed from runner images in November 2022
296
-
brew install coreutils python3 pcre gnu-sed
296
+
brew install coreutils pcre gnu-sed
297
297
298
-
- name: Install missing Python packages
298
+
- name: Install missing Python packages on ubuntu
299
+
if: contains(matrix.os, 'ubuntu')
299
300
run: |
300
301
python3 -m pip install pip --upgrade
301
302
python3 -m pip install pytest
302
303
python3 -m pip install pytest-timeout
303
304
python3 -m pip install psutil
304
305
306
+
# we need to use -break-system-packages --user because the common approaches do not work.
307
+
# using pip works but it appears to install the packages into a different Python installation so they are not found later on.
308
+
# using python3 -m pip without the additional flags fails since the packages are being managed by a different tool (brew) and that lacks some of the packages.
0 commit comments