From ee57d3a6b68ef0805b616b8d0bd164b80d87ca66 Mon Sep 17 00:00:00 2001 From: rahul4732saini Date: Fri, 5 Jul 2024 20:15:01 +0530 Subject: [PATCH] Fix pytest.yml Fixed python version definitions in pytest.yml --- .github/workflows/pytest.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index cf60ee4..551f0f1 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -17,7 +17,10 @@ jobs: strategy: matrix: - python-version: [3.10, 3.11, 3.12] + python-version: + - '3.10' + - '3.11' + - '3.12' steps: - name: Checkout code