Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8.2
3.9.0
15 changes: 11 additions & 4 deletions azure/azure-build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ stages:
displayName: Print AWS info

- task: UsePythonVersion@0
displayName: "Use Python 3.8"
displayName: "Use Python 3.9"
inputs:
versionSpec: "3.8"
versionSpec: "3.9"

- task: NodeTool@0
displayName: "Use Node 13"
displayName: "Use Node 20"
inputs:
versionSpec: '13.x'
versionSpec: '20.x'

- bash: |
node --version
Expand All @@ -67,6 +67,13 @@ stages:
- bash: |
set -e
source ~/.nvm/nvm.sh
npm config delete prefix || true
unset NPM_CONFIG_PREFIX
nvm install v14.21.1
nvm use --delete-prefix v14.21.1 --silent
node --version
npm --version
nvm --version
nvm install-latest-npm
displayName: Update npm

Expand Down
Loading
Loading