Skip to content

Commit 0bb84e3

Browse files
committed
tweak env.bat
solves winpython#813
1 parent 9862e6d commit 0bb84e3

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

make.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1013,9 +1013,12 @@ def _create_batch_scripts_initial(self):
10131013
if "%WINPYDIR:~-5%"=="amd64" set WINPYARCH=WIN-AMD64
10141014
set FINDDIR=%WINDIR%\system32
10151015
echo ";%PATH%;" | %FINDDIR%\find.exe /C /I ";%WINPYDIR%\;" >nul
1016-
if %ERRORLEVEL% NEQ 0 set PATH="""
1016+
if %ERRORLEVEL% NEQ 0 (
1017+
set "PATH="""
10171018
+ path
1018-
+ r"""
1019+
+ r""""
1020+
cd .
1021+
)
10191022
10201023
rem force default pyqt5 kit for Spyder if PyQt5 module is there
10211024
if exist "%WINPYDIR%\Lib\site-packages\PyQt5\__init__.py" set QT_API=pyqt5

winpython/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '2.3.20200215'
31+
__version__ = '2.3.20200307'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

0 commit comments

Comments
 (0)