check failures fix for older versions

This commit is contained in:
Aparna Jyothi 2025-04-17 12:36:11 +05:30
parent 4e9a9d3ee8
commit 77a921a769
2 changed files with 3 additions and 3 deletions

View file

@ -264,8 +264,8 @@ jobs:
- name: Validate version
run: |
$pythonVersion = (python --version)
if ("Python 3.9.0b4" -ne "$pythonVersion"){
Write-Host "The current version is $pythonVersion; expected version is 3.9.0b4"
if ("Python 3.11.0b4" -ne "$pythonVersion"){
Write-Host "The current version is $pythonVersion; expected version is 3.11.0b4"
exit 1
}
$pythonVersion