Skip to content

Commit

Permalink
Merge pull request #23 from vladkol/vladkol/ext-hotfix1
Browse files Browse the repository at this point in the history
Extension hotfix
  • Loading branch information
Vlad Kolesnikov authored Mar 13, 2021
2 parents f5870aa + 99daaf3 commit 01d19d2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "azure-debug-relay",
"displayName": "Azure Debug Relay",
"description": "Distributed Debugging Extension for Python",
"version": "0.3.9",
"version": "0.4.0",
"publisher": "VladKolesnikov-vladkol",
"repository": "https://github.com/vladkol/azure-debug-relay",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "azure-debug-relay"
version = "0.3.9"
version = "0.4.0"
description = "Cross-network remote debugging for Python"
authors = ["Vlad Kolesnikov"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions samples/azure_ml_advanced/publish_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def create_and_publish_pipeline() -> any:
'argparse==1.4.0',
'azureml-core==1.22.0',
'debugpy==1.2.1',
'azure-debug-relay==0.3.9'
'azure-debug-relay==0.4.0'
])
batch_env = Environment(name="train-env")
batch_env.docker.enabled = True
Expand All @@ -83,7 +83,7 @@ def create_and_publish_pipeline() -> any:
tf_env.python.conda_dependencies.add_pip_package('argparse==1.4.0')
tf_env.python.conda_dependencies.add_pip_package('debugpy==1.2.1')
tf_env.python.conda_dependencies.add_pip_package(
'azure-debug-relay==0.3.9')
'azure-debug-relay==0.4.0')

print("Create pipeline steps")
steps = get_pipeline(
Expand Down
2 changes: 1 addition & 1 deletion samples/azure_ml_simple/deploy_and_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
conda_dependencies.add_conda_package("pip")
conda_dependencies.add_pip_package("azureml-sdk==" + amlcore.__version__)
conda_dependencies.add_pip_package("debugpy==1.2.1")
conda_dependencies.add_pip_package("azure-debug-relay==0.3.9")
conda_dependencies.add_pip_package("azure-debug-relay==0.4.0")

train_step = PythonScriptStep(name='Train Step with Debugging',
script_name="samples/azure_ml_simple/steps/train.py",
Expand Down
2 changes: 1 addition & 1 deletion vscode-extension/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export function activate(context: vscode.ExtensionContext) {
console.log('Azure Relay Bridge extension activated.');

pythonPath = "python"
var pythonConfig = vscode.workspace.getConfiguration("python1")
var pythonConfig = vscode.workspace.getConfiguration("python")
if (pythonConfig !== undefined){
var pythonPathResult = pythonConfig.get("pythonPath")
if (pythonPathResult !== undefined) {
Expand Down

0 comments on commit 01d19d2

Please sign in to comment.