From fa256f775aebeedef41f93490ee3b57b990a5a2a Mon Sep 17 00:00:00 2001 From: priya-kinthali Date: Mon, 14 Oct 2024 18:28:08 +0530 Subject: [PATCH] Modified workflows to enhance the testing in accordance with latest changes --- .github/workflows/test-python.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index aa4cf865..06e031e2 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -474,15 +474,7 @@ jobs: strategy: fail-fast: false matrix: - os: - [ - ubuntu-20.04, - ubuntu-22.04, - ubuntu-latest, - windows-latest, - macos-latest, - macos-13 - ] + os: [ubuntu-latest, windows-latest, macos-latest, macos-13, ubuntu-20.04, ubuntu-22.04] steps: - uses: actions/checkout@v4 - name: Setup Python and check latest @@ -495,7 +487,7 @@ jobs: - name: Validate version run: | $pythonVersion = (python --version) - if ("$pythonVersion" -NotMatch "3.12"){ + if ("$pythonVersion" -NotMatch "3.13"){ Write-Host "The current version is $pythonVersion; expected version is 3.12" exit 1 }