From fdea68f3e547637339e80ed243f03fdf8d9b72ed Mon Sep 17 00:00:00 2001 From: Joshua Slui Date: Sun, 13 Oct 2024 23:17:14 +0200 Subject: [PATCH] Attempt upgrading of pip/pylint astroid --- .github/workflows/pylint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 1123271..4330e48 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -7,17 +7,17 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.12.x", "3.13"] + python-version: ["3.12.x", "3.13.x"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - name: Install pylint + - name: Install pylint and astroid run: | python -m pip install --upgrade pip - pip install pylint + pip install --upgrade pylint astroid - name: Install dependencies run: | pip install -r requirements.txt