Skip to content

Commit 9fb9c6f

Browse files
committed
Support for DataLab V1.0: update references from 'cdl' to 'datalab' in batch scripts and Python files
1 parent d393901 commit 9fb9c6f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

executables/DataLab.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
call "%~dp0env_for_icons.bat" %*
33
cd/D "%WINPYWORKDIR1%"
4-
"%WINPYDIR%\python.exe" -m cdl.app %*
4+
"%WINPYDIR%\python.exe" -m datalab.app %*

scripts/build_distribution.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ REM ======================================================
33
REM Generic Python Installer build script
44
REM ------------------------------------------
55
REM Licensed under the terms of the BSD 3-Clause
6-
REM (see cdl/LICENSE for details)
6+
REM (see datalab/LICENSE for details)
77
REM ======================================================
88
call %~dp0utils GetScriptPath SCRIPTPATH
99
call %FUNC% SetEnvVars
@@ -40,7 +40,7 @@ rmdir /S /Q notebooks
4040
rmdir /S /Q t
4141
cd %ROOTPATH%
4242
@REM Install packages
43-
pip install --no-cache-dir --no-index --find-links=packages cdl==%CI_VER%
43+
pip install --no-cache-dir --no-index --find-links=packages datalab-platform==%CI_VER%
4444
pip install --no-cache-dir --no-index --find-links=packages -r requirements.txt
4545

4646
@REM Apply patches

scripts/build_installer.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ REM ======================================================
33
REM Generic Python Installer build script
44
REM ------------------------------------------
55
REM Licensed under the terms of the BSD 3-Clause
6-
REM (see cdl/LICENSE for details)
6+
REM (see datalab/LICENSE for details)
77
REM ======================================================
88
setlocal enabledelayedexpansion
99
call %~dp0utils GetScriptPath SCRIPTPATH

scripts/clean_up.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ REM ======================================================
33
REM Generic Python Installer build script
44
REM ------------------------------------------
55
REM Licensed under the terms of the BSD 3-Clause
6-
REM (see cdl/LICENSE for details)
6+
REM (see datalab/LICENSE for details)
77
REM ======================================================
88
call %~dp0utils GetScriptPath SCRIPTPATH
99
call %FUNC% SetEnvVars

scripts/download.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ mkdir packages
99

1010
call %FUNC% DeployPython
1111
%PYTHON% -m pip install --upgrade pip
12-
pip download cdl==%CI_VER% -d packages
12+
pip download datalab-platform==%CI_VER% -d packages
1313
pip download -r requirements.txt -d packages
1414

1515
rmdir /S /Q ".\tmp"

wix/makewxs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# Licensed under the terms of the BSD 3-Clause
4-
# (see cdl/LICENSE for details)
4+
# (see datalab/LICENSE for details)
55

66
"""Make a WiX Toolset .wxs file for the DataLab Windows installer.
77

0 commit comments

Comments
 (0)