File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 28
28
29
29
set -e
30
30
31
- WRAPPER_VERSION=1.1.0
31
+ WRAPPER_VERSION=1.1.1
32
32
33
33
VERSION_DIR=' .moleculew'
34
34
PYTHON_VERSION_FILE=" $VERSION_DIR /python_version"
@@ -238,6 +238,14 @@ virtualenv_presant() {
238
238
fi
239
239
}
240
240
241
+ install_rich () {
242
+ # Workaround breaking changes in rich 11 by installing version 10
243
+ local RICH_VERSION=' 10.16.2'
244
+ banner " Installing Rich $RICH_VERSION into virtualenv $VIRTUAL_ENV "
245
+ pip install " rich==$RICH_VERSION "
246
+ echo ' '
247
+ }
248
+
241
249
install_ansible () {
242
250
banner " Installing Ansible $ANSIBLE_VERSION into virtualenv $VIRTUAL_ENV "
243
251
pip install " ansible==$ANSIBLE_VERSION "
@@ -865,6 +873,9 @@ activate_virtualenv() {
865
873
source " $MOLECULE_WRAPPER_ENV /bin/activate"
866
874
echo ' '
867
875
876
+ # Workaround breaking changes in rich 11 by installing version 10
877
+ install_rich
878
+
868
879
install_ansible
869
880
870
881
install_docker_lib
You can’t perform that action at this time.
0 commit comments