diff options
author | Lee Garrett <lgarrett@rocketjump.eu> | 2022-11-29 00:43:36 +0100 |
---|---|---|
committer | Lee Garrett <lgarrett@rocketjump.eu> | 2022-11-29 00:51:05 +0100 |
commit | ff14d5d823543037f03244a27f9e242b2e5db29e (patch) | |
tree | c6c818e44b00b9a6066b329fd41f97d2c2662ffe | |
parent | 8624b387425ed7f076af93011902ed0ab1c2cdd5 (diff) | |
download | debian-ansible-core-ff14d5d823543037f03244a27f9e242b2e5db29e.zip |
d/control: Tighten dependencies
- ansible 2.14 requires python 3.9 to run [0]
- pyyaml 5.1 is needed for py 3.8+ support (see requirements.txt
- Recommend current ansible package (7.0.0-1)
[0] https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#node-requirement-summary
-rw-r--r-- | debian/control | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/control b/debian/control index 3a84f429..e40682b8 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Priority: optional Build-Depends: debhelper-compat (= 13), dh-python, pybuild-plugin-pyproject, - python3, + python3 (>= 3.9.0~), # python3-antsibull <!nodoc>, python3-docutils, python3-pycryptodome, @@ -19,7 +19,7 @@ Build-Depends: debhelper-compat (= 13), # python3-sphinx <!nodoc>, # python3-sphinx-notfound-page <!nodoc>, # python3-sphinx-rtd-theme <!nodoc>, - python3-yaml + python3-yaml (>= 5.1~) # sphinx-common Rules-Requires-Root: no Standards-Version: 4.6.1.0 @@ -38,8 +38,8 @@ Depends: ${misc:Depends}, python3-httplib2, python3-jinja2 (>= 3.0.0~), python3-netaddr, - python3-yaml -Recommends: ansible (>= 4.6.0-1~), + python3-yaml (>= 5.1~) +Recommends: ansible (>= 7.0.0-1~), python3-argcomplete, python3-cryptography, python3-jmespath, |