From dfe125eb490990e13636439237e75ea4d9577e7d Mon Sep 17 00:00:00 2001 From: Setsugennoao Date: Fri, 17 May 2024 11:02:34 +0200 Subject: [PATCH] Update gh workflow requirements --- .github/workflows/docs.yml | 13 ++++++------- .github/workflows/lint.yml | 6 +++--- .github/workflows/pypipublish.yml | 2 +- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 1a7d980..73c3191 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -3,15 +3,14 @@ name: Build documentation on: push: paths: - - "**.py" - - "**.rst" + - '**.py' + - '**.rst' pull_request: branches: - master paths: - - "**.py" - - "**.rst" - + - '**.py' + - '**.rst' jobs: docs: @@ -19,9 +18,9 @@ jobs: strategy: matrix: versions: - - 65 + - 68 python-version: - - "3.11" + - '3.11' steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 79c1bbb..43ae079 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,9 +8,9 @@ jobs: strategy: matrix: versions: - - 65 + - 68 python-version: - - "3.11" + - '3.12' steps: - uses: actions/checkout@v2 @@ -28,4 +28,4 @@ jobs: run: flake8 vsdeband - name: Running mypy if: steps.dependencies.outcome == 'success' - run: mypy vsdeband \ No newline at end of file + run: mypy vsdeband diff --git a/.github/workflows/pypipublish.yml b/.github/workflows/pypipublish.yml index 265db02..a8807be 100644 --- a/.github/workflows/pypipublish.yml +++ b/.github/workflows/pypipublish.yml @@ -14,7 +14,7 @@ jobs: - name: Prep Python uses: actions/setup-python@v2 with: - python-version: '3.11' + python-version: '3.12' - name: Install build tools run: |