Skip to content

Commit

Permalink
Update Python version to 3.12.8
Browse files Browse the repository at this point in the history
  • Loading branch information
marina-p committed Jan 28, 2025
1 parent a3b1a00 commit e2de535
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_build_test_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions ci_build_pipelines/stages/build/steps/restlerfullbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions ci_build_pipelines/stages/test/steps/engineUnitTests.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions ci_build_pipelines/stages/test/steps/quickStartTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit e2de535

Please sign in to comment.