Skip to content

Commit 46a58ea

Browse files
authored
Merge pull request #2953 from Azure/shpaster/remove-python
Removes Python from Batch Explorer
2 parents 13d0324 + 8b7984d commit 46a58ea

File tree

199 files changed

+234
-9758
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+234
-9758
lines changed

.vscode/settings.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,6 @@
4949
],
5050
"editor.defaultFormatter": "esbenp.prettier-vscode"
5151
},
52-
// Python
53-
"python.autoComplete.extraPaths": [
54-
"${workspaceRoot}/python"
55-
],
56-
"python.formatting.provider": "yapf",
5752
// Typescript
5853
"typescript.tsdk": "node_modules/typescript/lib",
5954
// General
@@ -63,7 +58,6 @@
6358
"**/build/**": true,
6459
"**/lib/**": true,
6560
"**/lib-*/**": true,
66-
"desktop/python/build/**": true,
6761
"desktop/release/**": true,
6862
"desktop/dll/**": true
6963
},

.vsts/common/setup-python.sh

Lines changed: 0 additions & 26 deletions
This file was deleted.

.vsts/darwin/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ steps:
22
- template: ./darwin-dependencies.yml
33
- script: |
44
set -e
5-
. "$(Agent.WorkFolder)/.venv/batchexplorer/bin/activate"
65
npm run build:package
76
displayName: Build and pack
87
- template: ../common/publish-artifacts.yml

.vsts/darwin/distribution.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ steps:
99
1010
- script: |
1111
set -e
12-
. "$(Agent.WorkFolder)/.venv/batchexplorer/bin/activate"
1312
npm run build:prod
1413
displayName: Build packages
1514
@@ -40,8 +39,6 @@ steps:
4039
4140
- script: |
4241
set -e
43-
. "$(Agent.WorkFolder)/.venv/batchexplorer/bin/activate"
44-
npm run build-python
4542
npm run package darwin-app
4643
cd ./release/mac
4744
zip -y -r ../BatchExplorer-mac.zip ./BatchExplorer.app
@@ -54,7 +51,6 @@ steps:
5451
5552
- script: |
5653
set -e
57-
. "$(Agent.WorkFolder)/.venv/batchexplorer/bin/activate"
5854
unzip ./release/BatchExplorer*.zip -d ./release/mac
5955
ls ./release/mac
6056
rm -f ./release/mac/*.pkg

.vsts/dependencies.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
steps:
22
- template: ./node-setup.yml
3-
- template: ./python-setup.yml

.vsts/linux/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ steps:
33

44
- script: |
55
set -e
6-
. "$(Agent.WorkFolder)/.venv/batchexplorer/bin/activate"
76
npm run build:package
87
displayName: Build and pack
98

.vsts/linux/distribution.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ steps:
99
1010
- script: |
1111
set -e
12-
. "$(Agent.WorkFolder)/.venv/batchexplorer/bin/activate"
1312
npm run build:package
1413
displayName: Build and pack
1514
@@ -40,7 +39,6 @@ steps:
4039

4140
- script: |
4241
set -e
43-
. "$(Agent.WorkFolder)/.venv/batchexplorer/bin/activate"
4442
npm run package linux-manifest
4543
workingDirectory: desktop
4644
displayName: Create manifest

.vsts/python-setup.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.vsts/win/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ steps:
33
- template: ./win-dependencies.yml
44

55
- pwsh: |
6-
$(Agent.WorkFolder)\.venv\batchexplorer\Scripts\Activate.ps1
76
npm run build:package
87
displayName: Build and package
98

.vsts/win/distribution.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,12 @@ steps:
1818
- pwsh: |
1919
. .vsts/win/exec.ps1
2020
$ErrorActionPreference = "Stop"
21-
$(Agent.WorkFolder)\.venv\batchexplorer\Scripts\Activate.ps1
2221
exec { npm run build:prod }
2322
displayName: Build all packages
2423
2524
- pwsh: |
2625
. ../.vsts/win/exec.ps1
2726
$ErrorActionPreference = "Stop"
28-
$(Agent.WorkFolder)\.venv\batchexplorer\Scripts\Activate.ps1
29-
exec { npm run build-python }
3027
exec { npm run package win-exe }
3128
workingDirectory: desktop
3229
displayName: Build .exe
@@ -39,7 +36,6 @@ steps:
3936
pattern: |
4037
**/*.exe
4138
**/*.dll
42-
!**/python36.dll
4339
4440
- pwsh: npm run package win-installer
4541
workingDirectory: desktop

0 commit comments

Comments
 (0)