Skip to content

Commit 57d84ef

Browse files
authored
Merge pull request #387 from yungwine/pip
set pip libraries version
2 parents aecf58e + 0fbbba9 commit 57d84ef

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

mytoninstaller/scripts/jsonrpcinstaller.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ENDC='\033[0m'
2828

2929
# Установка компонентов python3
3030
echo -e "${COLOR}[1/4]${ENDC} Installing required packages"
31-
pip3 install Werkzeug json-rpc cloudscraper pyotp
31+
pip3 install Werkzeug json-rpc cloudscraper pyotp jsonpickle # todo: set versions
3232

3333
# Клонирование репозиториев с github.com
3434
echo -e "${COLOR}[2/4]${ENDC} Cloning github repository"

mytoninstaller/scripts/ton_http_api_installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ COLOR='\033[92m'
1212
ENDC='\033[0m'
1313

1414
# install python3 packages
15-
pip3 install virtualenv
15+
pip3 install virtualenv==20.27.1
1616

1717
# prepare the virtual environment
1818
echo -e "${COLOR}[1/4]${ENDC} Preparing the virtual environment"

requirements.txt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
crc16
2-
requests
3-
psutil
4-
fastcrc
5-
jsonpickle
6-
pynacl
1+
crc16==0.1.1
2+
requests==2.32.3
3+
psutil==6.1.0
4+
fastcrc==0.3.2
5+
pynacl==1.5.0

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ done
7272
if [ "${mode}" = "" ]; then # no mode
7373
echo "Running cli installer"
7474
wget https://raw.githubusercontent.com/${author}/${repo}/${branch}/scripts/install.py
75-
pip3 install inquirer
75+
pip3 install inquirer==3.4.0
7676
python3 install.py
7777
exit
7878
fi

scripts/ton_installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ else
9292
fi
9393

9494
# Установка компонентов python3
95-
pip3 install psutil crc16 requests
95+
pip3 install psutil==6.1.0 crc16==0.1.1 requests==2.32.3
9696

9797
# build openssl 3.0
9898
echo -e "${COLOR}[2/6]${ENDC} Building OpenSSL 3.0"

0 commit comments

Comments
 (0)