Merge "Change checkout commit in setup_env"

This commit is contained in:
Zuul 2023-04-05 16:07:57 +00:00 committed by Gerrit Code Review
commit 3f7a3edd1e
2 changed files with 4 additions and 4 deletions

View File

@ -26,8 +26,8 @@ We've created an "easy button" for Ubuntu, Centos, RHEL and openSUSE.
b. -t option allows to specify tag in Tempest repository which will be installed.
For example: execute ``./setup_env -t tags/3`` to install Tempest tag-3.
By default, Tempest 31.1.0 will be installed from commit
56d259dd78cc9ae974cc5dc24a54dbd8008770e6 (June 2022).
By default, Tempest will be installed from commit
3c7eebaaf35c9e8a3f00c76cd1741457bdec9fab (April 2023).
c. -p option allows to specify python version - 3.8.10 (-p 3)
or any equal or above 3.8.0. Default to python 3.8.10.

View File

@ -1,8 +1,8 @@
#!/bin/bash -x
# Default Tempest commit:
# SHA 56d259dd78cc9ae974cc5dc24a54dbd8008770e6 (June 2022) Tag 31.1.0
CHECKOUT_POINT=56d259dd78cc9ae974cc5dc24a54dbd8008770e6
# SHA 3c7eebaaf35c9e8a3f00c76cd1741457bdec9fab (April 2023)
CHECKOUT_POINT=3c7eebaaf35c9e8a3f00c76cd1741457bdec9fab
PY_VERSION="3.8.10"
UPPER_CONSTRAINTS_FILE="https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt"
LOCAL_INTERPRETER=false