File tree Expand file tree Collapse file tree 5 files changed +11
-808
lines changed
Expand file tree Collapse file tree 5 files changed +11
-808
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ python3 -m venv venv
33source venv/bin/activate
44python3 -m pip install --upgrade pip
55python3 -m pip install -U setuptools
6- python3 -m pip install -r requirements_linux .txt
6+ python3 -m pip install -r requirements .txt
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ copy /Y config_temp.json config.json
1616del config_temp.json
1717
1818REM Checking for Python version
19- python -c " import sys; print(sys.version_info[:2] )" > version.txt
19+ python -c " import sys; print('.'.join(map(str, sys.version_info[:3])) )" > version.txt
2020set /p version = < version.txt
21- IF " %version% " LSS " 3.10" (
22- echo Your version of Python is not supported. Please install Python 3.10
21+ IF " %version% " LSS " 3.10.0 " (
22+ echo Your version of Python %version% is not supported. Please install Python 3.10
2323 pause
2424)
25- IF " %version% " GEQ " 3.11 " (
26- echo Your version of Python is not supported. Please install Python 3.10
25+ IF " %version% " GEQ " 3.10.14 " (
26+ echo Your version of Python %version% is not supported. Please install Python 3.10
2727 pause
2828)
2929
Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ copy /Y config_temp.json config.json
1313del config_temp.json
1414
1515REM Checking for Python version
16- python -c " import sys; print(sys.version_info[:2] )" > version.txt
16+ python -c " import sys; print('.'.join(map(str, sys.version_info[:3])) )" > version.txt
1717set /p version = < version.txt
18- IF " %version% " LSS " 3.10" (
19- echo Your version of Python is not supported. Please install Python 3.10
18+ IF " %version% " LSS " 3.10.0 " (
19+ echo Your version of Python %version% is not supported. Please install Python 3.10
2020 pause
2121)
22- IF " %version% " GEQ " 3.11 " (
23- echo Your version of Python is not supported. Please install Python 3.10
22+ IF " %version% " GEQ " 3.10.14 " (
23+ echo Your version of Python %version% is not supported. Please install Python 3.10
2424 pause
2525)
2626
You can’t perform that action at this time.
0 commit comments