From ac7eac3335a651dc4580e411fa9caeee98467e26 Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Fri, 22 Mar 2024 10:03:43 +0100 Subject: [PATCH] Update test_install.py install stable version From the team, we agree on installing stable released version instead of pre-release version which may include bugs and not the plugin developers intend to show to the community. --- aiida_registry/test_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiida_registry/test_install.py b/aiida_registry/test_install.py index 22708921..1001c3da 100644 --- a/aiida_registry/test_install.py +++ b/aiida_registry/test_install.py @@ -120,7 +120,7 @@ def test_install_one_docker(container_image, plugin): user=user, ) install_package = container.exec_run( - f'pip install --constraint /tmp/pip-constraint.txt --pre {plugin["pip_url"]}', + f'pip install --constraint /tmp/pip-constraint.txt {plugin["pip_url"]}', user=user, )