Skip to content

Commit 91c2406

Browse files
authored
Merge pull request #1295 from projectsyn/renovate/pylint-4.x
Update dependency pylint to v4.0.5
2 parents 094ee4e + e60d5f0 commit 91c2406

File tree

4 files changed

+22
-18
lines changed

4 files changed

+22
-18
lines changed

.github/workflows/build-virtualenv-caches.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,16 @@ jobs:
5151
with:
5252
python-version: ${{ matrix.python-version }}
5353
- uses: Gr1N/setup-poetry@v9
54-
- name: Install tox
55-
run: |
56-
pip install tox
5754
- uses: actions/cache@v5
5855
with:
5956
path: |
6057
.tox
6158
~/.cache/pypoetry/virtualenvs
6259
key: ${{ runner.os }}-test-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
60+
- name: Install Poetry and setup Poetry virtualenv
61+
run: |
62+
poetry env use python${{ matrix.python-version }}
63+
poetry install
6364
- name: Extract Python minor version from matrix python-version
6465
run: echo "PYVER=$(echo ${{ matrix.python-version}} |cut -d. -f1,2)" >> $GITHUB_ENV
6566
- run: |
@@ -79,15 +80,16 @@ jobs:
7980
with:
8081
python-version: ${{ matrix.python-version }}
8182
- uses: Gr1N/setup-poetry@v9
82-
- name: Install tox
83-
run: |
84-
pip install tox
8583
- uses: actions/cache@v5
8684
with:
8785
path: |
8886
.tox
8987
~/.cache/pypoetry/virtualenvs
9088
key: ${{ runner.os }}-bench-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
89+
- name: Install Poetry and setup Poetry virtualenv
90+
run: |
91+
poetry env use python${{ matrix.python-version }}
92+
poetry install
9193
- name: Extract Python minor version from matrix python-version
9294
run: echo "PYVER=$(echo ${{ matrix.python-version}} |cut -d. -f1,2)" >> $GITHUB_ENV
9395
- run: |

.github/workflows/test.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,16 @@ jobs:
5353
with:
5454
python-version: ${{ matrix.python-version }}
5555
- uses: Gr1N/setup-poetry@v9
56-
- name: Install tox
57-
run: |
58-
pip install tox
5956
- uses: actions/cache@v5
6057
with:
6158
path: |
6259
.tox
6360
~/.cache/pypoetry/virtualenvs
6461
key: ${{ runner.os }}-test-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
62+
- name: Install Poetry and setup Poetry virtualenv
63+
run: |
64+
poetry env use python${{ matrix.python-version }}
65+
poetry install
6566
- name: Install jsonnet-bundler
6667
run: |
6768
mkdir -p /opt/bin && curl -sLo /opt/bin/jb \
@@ -87,15 +88,16 @@ jobs:
8788
with:
8889
python-version: ${{ matrix.python-version }}
8990
- uses: Gr1N/setup-poetry@v9
90-
- name: Install tox
91-
run: |
92-
pip install tox
9391
- uses: actions/cache@v5
9492
with:
9593
path: |
9694
.tox
9795
~/.cache/pypoetry/virtualenvs
9896
key: ${{ runner.os }}-bench-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
97+
- name: Install Poetry and setup Poetry virtualenv
98+
run: |
99+
poetry env use python${{ matrix.python-version }}
100+
poetry install
99101
- name: Install jsonnet-bundler
100102
run: |
101103
mkdir -p /opt/bin && curl -sLo /opt/bin/jb \

poetry.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ responses = "0.26.0"
5454
black = "26.1.0"
5555
pyfakefs = "6.1.1"
5656
pytest-cov = "7.0.0"
57-
pylint = "4.0.4"
57+
pylint = "4.0.5"
5858

5959
[tool.poetry.scripts]
6060
commodore = 'commodore.cli:main'

0 commit comments

Comments
 (0)