diff options
-rw-r--r-- | fdio.infra.ansible/roles/python_env/tasks/main.yaml | 63 | ||||
-rw-r--r-- | requirements.txt | 64 |
2 files changed, 72 insertions, 55 deletions
diff --git a/fdio.infra.ansible/roles/python_env/tasks/main.yaml b/fdio.infra.ansible/roles/python_env/tasks/main.yaml index 02850110a9..8e66da8ca3 100644 --- a/fdio.infra.ansible/roles/python_env/tasks/main.yaml +++ b/fdio.infra.ansible/roles/python_env/tasks/main.yaml @@ -20,42 +20,51 @@ - name: Inst - CSIT PIP requirements ansible.builtin.pip: name: - - "ecdsa==0.18.0" - - "paramiko==3.3.1" + - "ecdsa==0.19.0" + - "paramiko==3.4.0" - "pycrypto==2.6.1" - - "python-dateutil==2.8.2" + - "python-dateutil==2.9.0" - "PyYAML==6.0.1" - - "requests==2.31.0" - - "robotframework==6.1.1" + - "requests==2.32.2" + - "robotframework==7.0.1" - "scapy==2.4.5" - - "scp==0.14.5" - - "ansible==8.2.0" - - "ansible-core==2.15.2" - - "dill==0.3.7" - - "numpy==1.25.2" - - "scipy==1.11.1" + - "scp==0.15.0" + - "ansible==10.2.0" + - "ansible-core==2.17.2" + - "dill==0.3.8" + - "numpy==2.0.1" + - "scipy==1.14.0" - "ply==3.11" - - "jsonschema==4.18.4" + - "jsonschema==4.23.0" - "rfc3339-validator==0.1.4" - "rfc3987==1.3.8" - - "attrs==23.1.0" - - "bcrypt==4.0.1" - - "certifi==2023.7.22" - - "cffi==1.15.1" - - "charset-normalizer==3.2.0" - - "cryptography==41.0.3" - - "idna==3.4" - - "Jinja2==3.1.2" - - "jsonschema-specifications==2023.7.1" - - "MarkupSafe==2.1.3" - - "packaging==23.1" - - "pycparser==2.21" + - "pylint==3.2.6" + - "astroid==3.2.4" + - "attrs==23.2.0" + - "bcrypt==4.2.0" + - "certifi==2024.7.4" + - "cffi==1.16.0" + - "charset-normalizer==3.3.2" + - "cryptography==43.0.0" + - "idna==3.7" + - "isort==5.13.2" + - "Jinja2==3.1.4" + - "jsonschema-specifications==2023.12.1" + - "MarkupSafe==2.1.5" + - "mccabe==0.7.0" + - "packaging==24.1" + - "platformdirs==4.2.2" + - "ply==3.11" + - "pycparser==2.22" - "PyNaCl==1.5.0" - - "referencing==0.30.0" + - "referencing==0.35.1" - "resolvelib==1.0.1" - - "rpds-py==0.9.2" + - "rpds-py==0.19.1" - "six==1.16.0" - - "urllib3==2.0.4" + - "tomli==2.0.1" + - "tomlkit==0.13.0" + - "typing_extensions==4.12.2" + - "urllib3==2.2.2" environment: ANSIBLE_SKIP_CONFLICT_CHECK: 1 tags: diff --git a/requirements.txt b/requirements.txt index 398d6896ed..22d0f88418 100644 --- a/requirements.txt +++ b/requirements.txt @@ -17,52 +17,60 @@ # into fatal error or uncaught exceptions. # # CSIT Core dependencies -ecdsa==0.18.0 -paramiko==3.3.1 +ecdsa==0.19.0 +paramiko==3.4.0 pycrypto==2.6.1 -python-dateutil==2.8.2 +python-dateutil==2.9.0 PyYAML==6.0.1 -requests==2.31.0 -robotframework==6.1.1 +requests==2.32.2 +robotframework==7.0.1 scapy==2.4.5 -scp==0.14.5 +scp==0.15.0 # IaaC dependencies -ansible==8.2.0 -ansible-core==2.15.2 +ansible==10.2.0 +ansible-core==2.17.2 # PLRsearch dependencies -dill==0.3.7 -numpy==1.25.2 -scipy==1.11.1 +dill==0.3.8 +numpy==2.0.1 +scipy==1.14.0 # VPP requirements ply==3.11 # JSON schema validation -jsonschema==4.18.4 +jsonschema==4.23.0 rfc3339-validator==0.1.4 rfc3987==1.3.8 # Dependencies for some tox checkers (not tox setup itself). -pylint==3.0.1 +pylint==3.2.6 # Other PIP freeze dependencies. -attrs==23.1.0 -bcrypt==4.0.1 -certifi==2023.7.22 -cffi==1.15.1 -charset-normalizer==3.2.0 -cryptography==41.0.3 -idna==3.4 -Jinja2==3.1.2 -jsonschema-specifications==2023.7.1 -MarkupSafe==2.1.3 -packaging==23.1 -pycparser==2.21 +astroid==3.2.4 +attrs==23.2.0 +bcrypt==4.2.0 +certifi==2024.7.4 +cffi==1.16.0 +charset-normalizer==3.3.2 +cryptography==43.0.0 +idna==3.7 +isort==5.13.2 +Jinja2==3.1.4 +jsonschema-specifications==2023.12.1 +MarkupSafe==2.1.5 +mccabe==0.7.0 +packaging==24.1 +platformdirs==4.2.2 +ply==3.11 +pycparser==2.22 PyNaCl==1.5.0 -referencing==0.30.0 +referencing==0.35.1 resolvelib==1.0.1 -rpds-py==0.9.2 +rpds-py==0.19.1 six==1.16.0 -urllib3==2.0.4 +tomli==2.0.1 +tomlkit==0.13.0 +typing_extensions==4.12.2 +urllib3==2.2.2 |