Skip to content

Commit 872c22e

Browse files
committed
no scons version limit any more
1 parent e73d0f2 commit 872c22e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

install_macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $RTT_PYTHON -m pip list > /dev/null || {
3838

3939
if ! [ -x "$(command -v scons)" ]; then
4040
echo "Installing scons."
41-
$RTT_PYTHON -m pip install scons==4.4.0
41+
$RTT_PYTHON -m pip install scons
4242
fi
4343

4444
if ! [ -x "$(command -v pyocd)" ]; then

install_suse.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
sudo zypper update -y
44

55
sudo zypper install python3 python3-pip gcc git ncurses-devel cross-arm-none-gcc11-bootstrap cross-arm-binutils qemu qemu-arm qemu-extra -y
6-
python3 -m pip install scons==4.4.0 requests
6+
python3 -m pip install scons requests
77
python3 -m pip install -U pyocd
88

99
url=https://raw.githubusercontent.com/RT-Thread/env/master/touch_env.sh

install_ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sudo apt-get update
44
sudo apt-get upgrade -y
55

66
sudo apt-get -qq install python3 python3-pip gcc git libncurses5-dev gcc-arm-none-eabi binutils-arm-none-eabi gdb-multiarch qemu qemu-system-arm -y
7-
python3 -m pip install scons==4.4.0 requests
7+
python3 -m pip install scons requests
88
python3 -m pip install -U pyocd
99

1010
url=https://raw.githubusercontent.com/RT-Thread/env/master/touch_env.sh

install_windows.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ cmd /c $RTT_PYTHON -m pip install --upgrade pip -i $PIP_SOURCE --trusted-host $P
7171

7272
if (!(Test-Command scons)) {
7373
echo "Installing scons."
74-
cmd /c $RTT_PYTHON -m pip install scons==4.4.0 -i $PIP_SOURCE --trusted-host $PIP_HOST
74+
cmd /c $RTT_PYTHON -m pip install scons -i $PIP_SOURCE --trusted-host $PIP_HOST
7575
} else {
7676
echo "scons has installed. Jump this step."
7777
}

0 commit comments

Comments
 (0)