From 0e658059074d4b1dbee3d233e0ef2b4c7c4a6ed8 Mon Sep 17 00:00:00 2001 From: Shamith Nakka Date: Fri, 24 Oct 2025 08:42:54 +0530 Subject: [PATCH] Fixing Linting Issue Use of Python version 3.8 limits the new feature introduced during and after 3.10. This fix should resolve the linting issue caused due to older versions. --- .github/workflows/python-linter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-linter.yml b/.github/workflows/python-linter.yml index c843b03..3d0c94f 100644 --- a/.github/workflows/python-linter.yml +++ b/.github/workflows/python-linter.yml @@ -14,9 +14,9 @@ jobs: uses: actions/checkout@v4.1.0 - name: Set up Python - uses: actions/setup-python@v4.7.1 + uses: actions/setup-python@v6.0.0 with: - python-version: 3.8 + python-version: '3.12' - name: Install dependencies run: |