From f49752b9cd95bb13e1689e8be8eb2c133c920d3c Mon Sep 17 00:00:00 2001 From: murat Date: Mon, 13 Jan 2025 14:05:24 +0000 Subject: [PATCH] Update pipeline libraries --- .github/workflows/ci-pipeline.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 9ccbf878..97869182 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -10,11 +10,10 @@ on: jobs: test_on_python_version: - # Python 3.6 isn't available on ubuntu-latest runs-on: ubuntu-24.04 strategy: matrix: - python-version: [3.8, "3.10", 3.12, 3.13] + python-version: ["3.8", "3.10", "3.12", "3.13"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -22,11 +21,8 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install linters - # only install linting libraries on python 3.8 since they don't suppot 3.6 - # if: matrix.python-version == 3.8 run: | - pip install click==8.0.1 - pip install black==22.1.0 + pip install black==24.2.0 pip install ruff - name: Install requirements @@ -34,14 +30,10 @@ jobs: pip install -r requirements.txt - name: Lint with ruff - # only run ruff on python 3.8 - # if: matrix.python-version == 3.8 run: | ruff check . - name: Lint with black - # only run black on python 3.8 - # if: matrix.python-version == 3.8 run: | black . --check