Revert audit fix changes and ignore the low severity Vulnerability.

This commit is contained in:
Aditya Toshniwal 2023-01-31 13:01:52 +05:30 committed by GitHub
parent cdcc4e7314
commit ec86152396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 4 deletions

View File

@ -166,7 +166,6 @@ REM Main build sequence Ends
ECHO Installing dependencies...
CALL python -m pip install --upgrade pip || EXIT /B 1
CALL python -m pip install --upgrade setuptools || EXIT /B 1
CALL pip install --only-binary=cryptography -r "%WD%\requirements.txt" || EXIT /B 1
CD %WD%

View File

@ -57,7 +57,6 @@ _create_python_virtualenv() {
# Make sure we have the wheel package present, as well as the latest pip
pip3 install --upgrade pip
pip3 install --upgrade setuptools
pip3 install wheel
# Install the requirements

View File

@ -132,7 +132,6 @@ _build_docs() {
# shellcheck disable=SC1091
source "${BUILD_ROOT}/venv/bin/activate"
pip3 install --upgrade pip
pip3 install --upgrade setuptools
pip3 install -r "${SOURCE_DIR}/requirements.txt"
pip3 install sphinx
pip3 install sphinxcontrib-youtube

View File

@ -188,7 +188,7 @@
"pep8": "pycodestyle --config=../.pycodestyle ../docs && pycodestyle --config=../.pycodestyle ../pkg && pycodestyle --config=../.pycodestyle ../tools && pycodestyle --config=../.pycodestyle ../web",
"auditjs-html": "yarn audit --json | yarn run yarn-audit-html --output ../auditjs.html",
"auditjs": "yarn audit --groups dependencies",
"auditpy": "safety check --full-report -i 40493 -i 51668",
"auditpy": "safety check --full-report -i 51668 -i 52495",
"audit": "yarn run auditjs && yarn run auditpy"
}
}