update reqs
This commit is contained in:
parent
9f00538b97
commit
a7b6d338c3
|
@ -1,4 +1,4 @@
|
|||
amqp==5.0.2
|
||||
amqp==5.0.5
|
||||
asgiref==3.3.1
|
||||
asyncio-nats-client==0.11.4
|
||||
billiard==3.6.3.0
|
||||
|
@ -9,7 +9,7 @@ chardet==4.0.0
|
|||
cryptography==3.3.1
|
||||
decorator==4.4.2
|
||||
Django==3.1.5
|
||||
django-cors-headers==3.6.0
|
||||
django-cors-headers==3.7.0
|
||||
django-rest-knox==4.1.0
|
||||
djangorestframework==3.12.2
|
||||
future==0.18.2
|
||||
|
@ -21,7 +21,7 @@ packaging==20.8
|
|||
psycopg2-binary==2.8.6
|
||||
pycparser==2.20
|
||||
pycryptodome==3.9.9
|
||||
pyotp==2.4.1
|
||||
pyotp==2.5.0
|
||||
pyparsing==2.4.7
|
||||
pytz==2020.5
|
||||
qrcode==6.1
|
||||
|
@ -29,8 +29,8 @@ redis==3.5.3
|
|||
requests==2.25.1
|
||||
six==1.15.0
|
||||
sqlparse==0.4.1
|
||||
twilio==6.51.0
|
||||
urllib3==1.26.2
|
||||
twilio==6.51.1
|
||||
urllib3==1.26.3
|
||||
uWSGI==2.0.19.1
|
||||
validators==0.18.2
|
||||
vine==5.0.0
|
||||
|
|
|
@ -27,7 +27,7 @@ LATEST_AGENT_VER = "1.4.1"
|
|||
MESH_VER = "0.7.54"
|
||||
|
||||
# for the update script, bump when need to recreate venv or npm install
|
||||
PIP_VER = "7"
|
||||
PIP_VER = "8"
|
||||
NPM_VER = "7"
|
||||
|
||||
DL_64 = f"https://github.com/wh1te909/rmmagent/releases/download/v{LATEST_AGENT_VER}/winagent-v{LATEST_AGENT_VER}.exe"
|
||||
|
|
|
@ -27,7 +27,7 @@ jobs:
|
|||
source env/bin/activate
|
||||
cd /myagent/_work/1/s/api/tacticalrmm
|
||||
pip install --no-cache-dir --upgrade pip
|
||||
pip install --no-cache-dir setuptools==51.1.2 wheel==0.36.2
|
||||
pip install --no-cache-dir setuptools==52.0.0 wheel==0.36.2
|
||||
pip install --no-cache-dir -r requirements.txt -r requirements-test.txt -r requirements-dev.txt
|
||||
displayName: "Install Python Dependencies"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
SCRIPT_VERSION="34"
|
||||
SCRIPT_VERSION="35"
|
||||
SCRIPT_URL='https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/install.sh'
|
||||
|
||||
sudo apt install -y curl wget
|
||||
|
@ -375,7 +375,7 @@ python3 -m venv env
|
|||
source /rmm/api/env/bin/activate
|
||||
cd /rmm/api/tacticalrmm
|
||||
pip install --no-cache-dir --upgrade pip
|
||||
pip install --no-cache-dir setuptools==51.1.2 wheel==0.36.2
|
||||
pip install --no-cache-dir setuptools==52.0.0 wheel==0.36.2
|
||||
pip install --no-cache-dir -r /rmm/api/tacticalrmm/requirements.txt
|
||||
python manage.py migrate
|
||||
python manage.py collectstatic --no-input
|
||||
|
|
|
@ -7,7 +7,7 @@ pgpw="hunter2"
|
|||
|
||||
#####################################################
|
||||
|
||||
SCRIPT_VERSION="13"
|
||||
SCRIPT_VERSION="14"
|
||||
SCRIPT_URL='https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/restore.sh'
|
||||
|
||||
sudo apt install -y curl wget
|
||||
|
@ -246,7 +246,7 @@ python3 -m venv env
|
|||
source /rmm/api/env/bin/activate
|
||||
cd /rmm/api/tacticalrmm
|
||||
pip install --no-cache-dir --upgrade pip
|
||||
pip install --no-cache-dir setuptools==51.1.2 wheel==0.36.2
|
||||
pip install --no-cache-dir setuptools==52.0.0 wheel==0.36.2
|
||||
pip install --no-cache-dir -r /rmm/api/tacticalrmm/requirements.txt
|
||||
python manage.py collectstatic --no-input
|
||||
python manage.py reload_nats
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
SCRIPT_VERSION="104"
|
||||
SCRIPT_VERSION="105"
|
||||
SCRIPT_URL='https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/update.sh'
|
||||
LATEST_SETTINGS_URL='https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/api/tacticalrmm/tacticalrmm/settings.py'
|
||||
YELLOW='\033[1;33m'
|
||||
|
@ -242,7 +242,7 @@ if [[ "${CURRENT_PIP_VER}" != "${LATEST_PIP_VER}" ]]; then
|
|||
source /rmm/api/env/bin/activate
|
||||
cd /rmm/api/tacticalrmm
|
||||
pip install --no-cache-dir --upgrade pip
|
||||
pip install --no-cache-dir setuptools==51.1.2 wheel==0.36.2
|
||||
pip install --no-cache-dir setuptools==52.0.0 wheel==0.36.2
|
||||
pip install --no-cache-dir -r requirements.txt
|
||||
else
|
||||
source /rmm/api/env/bin/activate
|
||||
|
|
Loading…
Reference in New Issue