diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2025-07-19 19:35:19 +0100 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2025-07-19 19:35:19 +0100 |
commit | e4db7f9c006927fa4b96bcedaefa3338fed931c1 (patch) | |
tree | 0c3b8cea22b6df3a6319120e06100b15604b7c50 /requirements.txt | |
parent | b09418c57891a475b3ebdf8b8d41a66e0545a1cc (diff) | |
download | infra-e4db7f9c006927fa4b96bcedaefa3338fed931c1.tar.gz infra-e4db7f9c006927fa4b96bcedaefa3338fed931c1.tar.bz2 infra-e4db7f9c006927fa4b96bcedaefa3338fed931c1.zip |
Make ansible work with system python
Seems like at some point I got new version of python as a dependency
from homebrew and it eventually bumped libraries versions. Now new
python is gone, so make infra runbooks working out of the box with
system python.
Diffstat (limited to 'requirements.txt')
-rw-r--r-- | requirements.txt | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/requirements.txt b/requirements.txt index 3e1af89..e07bffb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,13 @@ -ansible==9.1.0 -ansible-core==2.16.3 +ansible==8.7.0 +ansible-core==2.15.13 cffi==1.17.1 -cryptography==42.0.4 -Jinja2==3.1.4 -MarkupSafe==2.1.3 -packaging==23.2 +cryptography==45.0.5 +importlib-resources==5.0.7 +Jinja2==3.1.6 +MarkupSafe==3.0.2 +packaging==25.0 pathspec==0.12.1 -pycparser==2.21 -PyYAML==6.0.1 +pycparser==2.22 +PyYAML==6.0.2 resolvelib==1.0.1 -yamllint==1.35.1 +yamllint==1.37.1 |