a021a9bba2
While requests-oauthlib 1.4.0 reports compatibility with python2.7 evidence points to the contrary. Specifically: import requests_oauthlib as oauth File "/home/zuul/src/opendev.org/zuul/zuul-jobs/.tox/py27/lib/python2.7/site-packages/requests_oauthlib/__init__.py", line 5, in <module> from .oauth1_session import OAuth1Session File "/home/zuul/src/opendev.org/zuul/zuul-jobs/.tox/py27/lib/python2.7/site-packages/requests_oauthlib/oauth1_session.py", line 1, in <module> from urllib.parse import urlparse ImportError: No module named parse The azure-storage-blob library depends on this oauthlib which is needed for log upload role testing. We address that by pinning the lib under python2.7. Change-Id: Ia27f2df166ccb33dcc93334d884411670ac859f7
58 lines
1.9 KiB
Plaintext
58 lines
1.9 KiB
Plaintext
# The order of packages is significant, because pip processes them in the order
|
|
# of appearance. Changing the order has an impact on the overall integration
|
|
# process, which may cause wedges in the gate later.
|
|
|
|
# We need to pin the ansible version directly here; per the
|
|
# deprecation policy it should trail the lowest version used by Zuul
|
|
# by 4 weeks to give people time to update before any roles start
|
|
# depending on new features.
|
|
|
|
ansible>=2.8,<2.9
|
|
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:
|
|
# 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' and python_version>='3'
|
|
# TODO: openstacksdk 0.46.0 dropped python 2.7 support. Remove this constraint
|
|
# when we dropped 2.7 in zuul-jobs as well.
|
|
openstacksdk>=0.17.1,<0.46.0;python_version<'3'
|
|
openstacksdk>=0.17.1;python_version>='3.6'
|
|
# TODO: keystoneauth1 4.1.0 dropped python 2.7 and 3.5 support. Remove this
|
|
# constraint when we drop them in zuul-jobs as well.
|
|
keystoneauth1>=3.18.0,<4.1.0;python_version<'3.6'
|
|
|
|
# TODO: cachetools 4.0.0 dropped python 2.7 support. Remove this constraint
|
|
# when we drop it in zuul-jobs as well.
|
|
cachetools>=2.0.0,<4.0;python_version<'3.5'
|
|
requests
|
|
requestsexceptions
|
|
bs4
|
|
# For upload-logs-google
|
|
google-cloud-storage
|
|
# google-cloud-storage needs protobuf which dropped py27/35 support in 3.18.0
|
|
protobuf<3.18;python_version<'3.6'
|
|
|
|
# For upload-logs-s3
|
|
boto3
|
|
|
|
# Deps of azure-storage-blob
|
|
msrest<0.7.0;python_version=='2.7'
|
|
requests-oauthlib<1.4.0;python_version=='2.7'
|
|
|
|
# For upload-logs-azure
|
|
azure-storage-blob
|
|
|
|
# For upload-logs-ibm
|
|
ibm-cos-sdk
|
|
|
|
# unittest.mock compatibility package for Python < 3.3
|
|
mock;python_version<'3.3'
|
|
|
|
# voluptuous dropped support for py27
|
|
voluptuous<0.13.0;python_version=='2.7'
|
|
|
|
# for remove-zuul-sshkey
|
|
paramiko
|