From e2de535b6451daef25985059608fe27c09198c15 Mon Sep 17 00:00:00 2001 From: Marina Polishchuk Date: Tue, 28 Jan 2025 12:14:15 -0800 Subject: [PATCH] Update Python version to 3.12.8 --- .github/workflows/ci_build_test_pr.yaml | 2 +- README.md | 2 +- ci_build_pipelines/stages/build/steps/restlerfullbuild.yml | 4 ++-- ci_build_pipelines/stages/test/steps/engineUnitTests.yml | 4 ++-- ci_build_pipelines/stages/test/steps/quickStartTests.yml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci_build_test_pr.yaml b/.github/workflows/ci_build_test_pr.yaml index 47dc68d4..09a0dca7 100644 --- a/.github/workflows/ci_build_test_pr.yaml +++ b/.github/workflows/ci_build_test_pr.yaml @@ -19,7 +19,7 @@ env: BUILD_CONFIGURATION: Release BUILD_PLATFORM: 'Any CPU' RESTLER_VERSION: '9.2.4' - PYTHON_VERSION: '3.8' + PYTHON_VERSION: '3.12.x' DOTNET_VERSION: '8.0.x' jobs: diff --git a/README.md b/README.md index a25a7ad6..0c2b2347 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ You can then use this docker image as basis to add the application under test to #### Local -Prerequisites: Install [Python 3.8.2](https://www.python.org/downloads/) and +Prerequisites: Install [Python 3.12.8](https://www.python.org/downloads/) and [.NET 8.0](https://dotnet.microsoft.com/download/dotnet-core?utm_source=getdotnetcorecli&utm_medium=referral), for your appropriate OS. Create a directory where you'd like to place the RESTler binaries: diff --git a/ci_build_pipelines/stages/build/steps/restlerfullbuild.yml b/ci_build_pipelines/stages/build/steps/restlerfullbuild.yml index 0fd77e07..091b1761 100644 --- a/ci_build_pipelines/stages/build/steps/restlerfullbuild.yml +++ b/ci_build_pipelines/stages/build/steps/restlerfullbuild.yml @@ -41,9 +41,9 @@ steps: arguments: '--no-restore -c $(buildConfiguration)' - task: UsePythonVersion@0 - displayName: Use Python version 3.8. + displayName: Use Python version 3.12 inputs: - versionSpec: '3.8' + versionSpec: '3.12' name: pyTools - script: | diff --git a/ci_build_pipelines/stages/test/steps/engineUnitTests.yml b/ci_build_pipelines/stages/test/steps/engineUnitTests.yml index 2acbef78..61f45c0c 100644 --- a/ci_build_pipelines/stages/test/steps/engineUnitTests.yml +++ b/ci_build_pipelines/stages/test/steps/engineUnitTests.yml @@ -1,8 +1,8 @@ steps: - task: UsePythonVersion@0 - displayName: Use Python version 3.8. + displayName: Use Python version 3.12. inputs: - versionSpec: '3.8' + versionSpec: '3.12' name: pyTools - script: pip install -r ./restler/requirements.txt diff --git a/ci_build_pipelines/stages/test/steps/quickStartTests.yml b/ci_build_pipelines/stages/test/steps/quickStartTests.yml index 16cfa56e..47f36c26 100644 --- a/ci_build_pipelines/stages/test/steps/quickStartTests.yml +++ b/ci_build_pipelines/stages/test/steps/quickStartTests.yml @@ -10,9 +10,9 @@ steps: restoreSolution: '**\Restler.sln' - task: UsePythonVersion@0 - displayName: Use Python version 3.8. + displayName: Use Python version 3.12. inputs: - versionSpec: '3.8' + versionSpec: '3.12' name: pyTools - script: |