Skip to content

Commit edcc9de

Browse files
committed
Renamed dev platform env var to PPSTACK_PYTHONEXE
1 parent 5ff3df2 commit edcc9de

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PYTHONPATH=.
1+
PYTHONPATH=.;../guidata;C:\Dev\Libre\PythonQwt

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"files.trimFinalNewlines": true,
1818
"files.trimTrailingWhitespace": true,
19-
"python.defaultInterpreterPath": "${env:GUIDATA_PYTHONEXE}",
19+
"python.defaultInterpreterPath": "${env:PPSTACK_PYTHONEXE}",
2020
"editor.formatOnSave": true,
2121
"isort.args": [
2222
"--profile",

.vscode/tasks.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"env": {
1818
"UNATTENDED": "1",
1919
"PYTHONUTF8": "1",
20-
"PYTHON": "${env:GUIDATA_PYTHONEXE}",
20+
"PYTHON": "${env:PPSTACK_PYTHONEXE}",
2121
}
2222
},
2323
"group": {
@@ -46,7 +46,7 @@
4646
"cwd": "scripts",
4747
"env": {
4848
"UNATTENDED": "1",
49-
"PYTHON": "${env:GUIDATA_PYTHONEXE}",
49+
"PYTHON": "${env:PPSTACK_PYTHONEXE}",
5050
}
5151
},
5252
"group": {
@@ -74,7 +74,7 @@
7474
"cwd": "scripts",
7575
"env": {
7676
"UNATTENDED": "1",
77-
"PYTHON": "${env:GUIDATA_PYTHONEXE}",
77+
"PYTHON": "${env:PPSTACK_PYTHONEXE}",
7878
}
7979
},
8080
"group": {
@@ -102,7 +102,7 @@
102102
"cwd": "scripts",
103103
"env": {
104104
"UNATTENDED": "1",
105-
"PYTHON": "${env:GUIDATA_PYTHONEXE}"
105+
"PYTHON": "${env:PPSTACK_PYTHONEXE}"
106106
}
107107
},
108108
"group": {
@@ -132,7 +132,7 @@
132132
"cwd": "scripts",
133133
"env": {
134134
"UNATTENDED": "1",
135-
"PYTHON": "${env:GUIDATA_PYTHONEXE}",
135+
"PYTHON": "${env:PPSTACK_PYTHONEXE}",
136136
}
137137
},
138138
"group": {
@@ -184,7 +184,7 @@
184184
"cwd": "scripts",
185185
"env": {
186186
"UNATTENDED": "1",
187-
"PYTHON": "${env:GUIDATA_PYTHONEXE}",
187+
"PYTHON": "${env:PPSTACK_PYTHONEXE}",
188188
}
189189
},
190190
"group": {
@@ -207,7 +207,7 @@
207207
"options": {
208208
"cwd": "scripts",
209209
"env": {
210-
"PYTHON": "${env:GUIDATA_PYTHONEXE}",
210+
"PYTHON": "${env:PPSTACK_PYTHONEXE}",
211211
"UNATTENDED": "1",
212212
}
213213
},
@@ -236,7 +236,7 @@
236236
"options": {
237237
"cwd": "scripts",
238238
"env": {
239-
"PYTHON": "${env:GUIDATA_PYTHONEXE}",
239+
"PYTHON": "${env:PPSTACK_PYTHONEXE}",
240240
"UNATTENDED": "1",
241241
}
242242
},
@@ -270,7 +270,7 @@
270270
"options": {
271271
"cwd": "scripts",
272272
"env": {
273-
"PYTHON": "${env:GUIDATA_PYTHONEXE}",
273+
"PYTHON": "${env:PPSTACK_PYTHONEXE}",
274274
"UNATTENDED": "1",
275275
}
276276
},

doc/dev/contribute.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,6 @@ development environment. The easiest way to do this is to use `virtualenv
9696
Some environment variables are required to be set before using the project from
9797
within Visual Studio Code (used in `launch.json` and `tasks.json`). These are:
9898

99-
* ``GUIDATA_PYTHONEXE``: The path to the Python interpreter to use. This is
99+
* ``PPSTACK_PYTHONEXE``: The path to the Python interpreter to use. This is
100100
used to launch the application from within Visual Studio Code. If not set,
101101
the default Python interpreter will be used.

doc/dev/platform.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ project settings and tasks, you will need to set the following environment varia
6060

6161
.. code-block:: bash
6262
63-
set GUIDATA_PYTHONEXE=C:\WPy64-31110\python-3.11.1.amd64\python.exe
63+
set PPSTACK_PYTHONEXE=C:\WPy64-31110\python-3.11.1.amd64\python.exe
6464
6565
CentOS Stream 8.8
6666
^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)