From 77a921a7694a30f442b9a8510aa3a5a983c4ca55 Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Thu, 17 Apr 2025 12:36:11 +0530 Subject: [PATCH] check failures fix for older versions --- .github/workflows/e2e-tests.yml | 2 +- .github/workflows/test-python.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 22757d82..6f31f584 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -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 diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index b16692cb..d440cd02 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -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