dependency-check-py icon indicating copy to clipboard operation
dependency-check-py copied to clipboard

Request to release the latest changes to pypi

Open tejaschumbalkar opened this issue 2 years ago • 3 comments

We are affected due to https://github.com/jeremylong/DependencyCheck/issues/5220

Can you release the latest changes to pypi?

tejaschumbalkar avatar Jan 06 '23 20:01 tejaschumbalkar

@tejaschumbalkar Have you seen https://github.com/jhermann/dependency-check-py#customization? You should be able to already upgrade locally to 7.4.4 with the configuration variables, no need to wait for a release from @jhermann (though an updated default version would be good).

aikebah avatar Jan 06 '23 20:01 aikebah

Hi @aikebah, thanks for the fix. Do you know the exact commands to execute? I've set the version before installation but still get the SQL error:

export DEPENDENCY_CHECK_VERSION=7.4.4
export DEPENDENCY_CHECK_URL=https://github.com/jeremylong/DependencyCheck/releases/download/v7.4.4/dependency-check-7.4.4-release.zip
pip install 'dependency-check<1'

ShiboXing avatar Jan 06 '23 20:01 ShiboXing

@ShiboXing no python-user, but from the documentation of jhermann I deduce that.... assuming you did not customize it.... the current install of dependency-check cli is in ~/.local/dependencycheck and needs to be deleted... and then you just run dependencycheck with the environment variable DEPENDENCY_CHECK_VERSION set to 7.4.4

So the following I would expect to work:

rm -r ~/.local/dependency-check/bin/
export DEPENDENCY_CHECK_VERSION=7.4.4
dependency-check -v

aikebah avatar Jan 06 '23 20:01 aikebah