From 533cbc2e06dd5015fcc828555d652a868761c990 Mon Sep 17 00:00:00 2001 From: Matthew McPherrin Date: Thu, 17 Oct 2024 15:00:59 -0400 Subject: [PATCH 1/3] Update versions of eveyrthing in the workflow --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d43fdc..fd00181 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,21 +5,21 @@ on: [push] jobs: lint: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.9 - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - name: Set up Python 3.14 + uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: 3.14 - name: Install Linting Tools run: | python -m pip install --upgrade pip - pip install --user pylint==2.6.0 - pip install --user black~=22.3 - pip install --user flake8~=4.0 + pip install --user pylint==3.3.1 + pip install --user black~=24.10 + pip install --user flake8~=7.1 - name: Analysing the code with pylint run: | From 127c12d9acce3612717a968edd603a1f340dabe4 Mon Sep 17 00:00:00 2001 From: Matthew McPherrin Date: Mon, 21 Oct 2024 22:17:25 -0400 Subject: [PATCH 2/3] python 3.13 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd00181..4475b77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Python 3.14 uses: actions/setup-python@v5 with: - python-version: 3.14 + python-version: 3.13 - name: Install Linting Tools run: | From 67524f687e36779e6cf1dad7914fcdcc410ac0c0 Mon Sep 17 00:00:00 2001 From: Matthew McPherrin Date: Mon, 21 Oct 2024 22:18:30 -0400 Subject: [PATCH 3/3] exclude incorrect version information --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4475b77..7d09189 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.14 + - name: Set up Python uses: actions/setup-python@v5 with: python-version: 3.13