Skip to content

Commit 022b5a2

Browse files
committed
pylint 3.2.6
1 parent 5f12af8 commit 022b5a2

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

.github/workflows/pull-request-management.yml

+14-13
Original file line numberDiff line numberDiff line change
@@ -388,21 +388,22 @@ jobs:
388388
3.13
389389
390390
# Install Python dependencies
391-
- name: Install Python requirement
392-
run: |
393-
pip install -r ansible_collections/arista/avd/requirements-dev.txt --upgrade
391+
# - name: Install Python requirement
392+
# run: |
393+
# pip install -r ansible_collections/arista/avd/requirements-dev.txt --upgrade
394394

395395
# Install Python and Ansible dependencies if cache misses
396-
# - name: Install Python requirements
397-
# run: |
398-
# if pip install --upgrade --dry-run -r ansible_collections/arista/avd/requirements-dev.txt | grep -q "Would install"; then
399-
# packages_to_upgrade=$(pip install --upgrade --dry-run -r ansible_collections/arista/avd/requirements-dev.txt | grep "Would install" | grep -oP "(?<=Would install ).*")
400-
# # Now, you can process or print the packages to be upgraded
401-
# echo "Packages to be upgraded: $packages_to_upgrade"
402-
# # Add additional conditions or steps if necessary
403-
# # pip install --cache-dir ~/.cache/pip -r .github/requirements-ci.txt --upgrade
404-
# # pip install --cache-dir ~/.cache/ansible-core "ansible-core<2.19.0"
405-
# fi
396+
- name: Install Python requirements
397+
run: |
398+
pip install --upgrade --dry-run -r ansible_collections/arista/avd/requirements-dev.txt
399+
# if pip install --upgrade --dry-run -r ansible_collections/arista/avd/requirements-dev.txt | grep -q "Would install"; then
400+
# packages_to_upgrade=$(pip install --upgrade --dry-run -r ansible_collections/arista/avd/requirements-dev.txt | grep "Would install" | grep -oP "(?<=Would install ).*")
401+
# # Now, you can process or print the packages to be upgraded
402+
# echo "Packages to be upgraded: $packages_to_upgrade"
403+
# # Add additional conditions or steps if necessary
404+
# # pip install --cache-dir ~/.cache/pip -r .github/requirements-ci.txt --upgrade
405+
# # pip install --cache-dir ~/.cache/ansible-core "ansible-core<2.19.0"
406+
# fi
406407
407408
# Run ansible-test sanity
408409
- name: Run ansible-test sanity

ansible_collections/arista/avd/requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jsonschema-rs>=0.24
1818
molecule>=6.0
1919
molecule-plugins[docker]>=23.4.0
2020
pydantic>=2.3.0
21-
pylint<=3.2.6
21+
pylint>=3.2.6
2222
pre-commit>=3.2.0
2323
pre-commit-hooks>=3.3.0
2424
referencing>=0.35.0

0 commit comments

Comments
 (0)