Pin openstacksdk to <0.48.0

The openstacksdk dropped py35 support in 0.48.0. Since we still have
py35 support we need to pin it temporarily until we've deprecated and
removed it.

Change-Id: Ia50ed54f43605fc1e12c95a2218b73abcadc66ed
This commit is contained in:
Tobias Henkel 2020-10-06 17:08:44 +02:00
parent e59b68d909
commit 9ff9fa5827
No known key found for this signature in database
GPG Key ID: 03750DEC158E5FA2

View File

@ -13,7 +13,10 @@ ansible>=2.7,<2.8 # https://review.opendev.org/#/c/727157/
stestr>=1.0.0,<3.0.0;python_version<'3.5' # Apache-2.0
stestr>=1.0.0;python_version>='3.5' # Apache-2.0
# For upload-logs-swift:
openstacksdk>=0.17.1
# TODO: openstacksdk 0.48.0 dropped python 3.5 support. Remove this constraint
# when we dropped 3.5 in zuul-jobs as well.
openstacksdk>=0.17.1,<0.48.0;python_version<'3.6'
openstacksdk>=0.17.1;python_version>='3.6'
requests
requestsexceptions
bs4