don't install async* modules, we need to cover bundled-in libraries and their successful import

pull/1242/merge
sebres 2023-12-12 15:23:10 +01:00
parent 054e1d89ca
commit 1371c91512
1 changed files with 4 additions and 3 deletions

View File

@ -63,8 +63,9 @@ jobs:
if dpkg --compare-versions "$F2B_PYV" ge 3.12; then
#sudo apt-get -y install python${F2B_PY/2/}-setuptools || echo 'setuptools not unavailable'
python -m pip install setuptools || echo "can't install setuptools"
python -m pip install pyasynchat || echo "can't install pyasynchat";
python -m pip install pyasyncore || echo "can't install pyasyncore";
# don't install async* modules, we need to cover bundled-in libraries:
#python -m pip install pyasynchat || echo "can't install pyasynchat";
#python -m pip install pyasyncore || echo "can't install pyasyncore";
fi
- name: Before scripts