jenkins-job-builder/requirements.txt
Vsevolod Fedorov c011568aa0 Requirements: Update PyYAML version
It lools like versions prior to 3.13 do not support
Python 3.7 nor Python 3.8.
Compatibility with PyYAML versions 3.13 and 6.0 are
checked with Python 3.7 and 3.8 manually (locally)
with `tox -e py37/py38 -r`.

Change-Id: Ie53d82a88498cc5650118d275496970ad6b4a6eb
2023-02-28 20:16:57 +03:00

13 lines
443 B
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.
setuptools<=65.7.0
six>=1.9.0 # MIT
PyYAML>=3.13 # MIT
pbr>=1.8 # Apache-2.0
stevedore>=1.17.1,<2; python_version < '3.0' # Apache-2.0
stevedore>=1.17.1; python_version >= '3.0' # Apache-2.0
python-jenkins>=0.4.15
fasteners
Jinja2