
pkg_resources comes from setuptools and not the python stdlib. Starting with python 3.12 and newer, setuptools won't automatically be installed into virtualenvs so the lack of a direct dependency will result in an error. Further more setuptools has deprecated pkg_resources and intends to remove it so adding a dependency would just be a band aid. The python stdlib has added a replacement for how sushy uses pkg_resources starting with python 3.9 and newer. Since sushy supports python 3.8 and newer we must support using the backport package. Depends-on: https://review.opendev.org/c/openstack/requirements/+/925306 Change-Id: I83719e368f8f7d39963c29c0013f512d1883a8dc
14 lines
620 B
Plaintext
14 lines
620 B
Plaintext
# Requirements lower bounds listed here are our best effort to keep them up to
|
|
# date but we do not test them so no guarantee of having them all correct. If
|
|
# you find any incorrect lower bounds, let us know or propose a fix.
|
|
|
|
# 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.
|
|
|
|
pbr!=2.1.0,>=2.0.0 # Apache-2.0
|
|
requests>=2.14.2 # Apache-2.0
|
|
python-dateutil>=2.7.0 # BSD
|
|
stevedore>=1.29.0 # Apache-2.0
|
|
importlib_resources>=1.3; python_version<'3.9' # Apache-2.0
|