Skip to content
Snippets Groups Projects
Commit 855fe4e1 authored by Bob Mottram's avatar Bob Mottram
Browse files

Don't upgrade some packages

parent 93af01f5
No related branches found
No related tags found
No related merge requests found
......@@ -526,7 +526,8 @@ function upgrade_matrix {
$MATRIX_PIP install --upgrade --force "phonenumbers>=8.2.0"
$MATRIX_PIP install --upgrade --force "sortedcontainers>=2.0.4"
$MATRIX_PIP install --upgrade --force "prometheus_client>=0.3.0"
$MATRIX_PIP install --upgrade --force "treq>=15.1"
# upgrade option causes breakage on ARM
$MATRIX_PIP install --force treq
if [ -f /etc/ssl/certs/${MATRIX_DOMAIN_NAME}.dhparam ]; then
chmod 755 /etc/ssl/certs/${MATRIX_DOMAIN_NAME}.dhparam
......@@ -828,7 +829,8 @@ function install_matrix {
increment_app_install_progress
$MATRIX_PIP install --upgrade lxml
# upgrade option causes breakage on ARM
$MATRIX_PIP install lxml
increment_app_install_progress
......@@ -844,7 +846,8 @@ function install_matrix {
increment_app_install_progress
$MATRIX_PIP install --upgrade --force "treq>=15.1"
# upgrade option causes breakage on ARM
$MATRIX_PIP install --force treq
increment_app_install_progress
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment