Previously we used a "~=" but that meant 1.0.2 matches "~=1.0.1." and
openstackclient 1.0.2's requirements are far too new for stable/juno. So
hard pin openstackclient to version 1.0.1.
Change-Id: I956b5e02699967b6fa8541ef06f0571be7043472
| ... | ... |
@@ -785,7 +785,7 @@ if use_library_from_git "python-openstackclient"; then |
| 785 | 785 |
git_clone_by_name "python-openstackclient" |
| 786 | 786 |
setup_dev_lib "python-openstackclient" |
| 787 | 787 |
else |
| 788 |
- pip_install 'python-openstackclient~=1.0.1' |
|
| 788 |
+ pip_install 'python-openstackclient==1.0.1' |
|
| 789 | 789 |
fi |
| 790 | 790 |
|
| 791 | 791 |
|