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

@ -71,4 +71,4 @@ jobs:
with:
python-version: '<3.11'
- name: Verify <3.11
run: python __tests__/verify-python.py 3.10.4
run: python __tests__/verify-python.py 3.10

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