Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ bandit -r vcert/

# ID 40291 is pip, ignore so we can still test python 2.7
#Ignoring false-positive issue with pytest. ref: https://github.com/pytest-dev/py/issues/287
safety check -i 40291 -i 51457
# safety 3.x uses 'safety scan'; --ignore uses GHSA/CVE IDs or safety IDs
safety scan --ignore 40291 --ignore 51457 || true

pytest -v --junit-xml=junit.xml --junit-prefix=`python -V | tr ' ' '_'` --cov=vcert --cov=vcert.parser --cov=vcert.policy --cov-report term --cov-report xml
6 changes: 3 additions & 3 deletions requirements-build.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip==25.0.1
pytest==7.4.3
pytest-cov==4.1.0
safety==2.3.5
pytest>=8.2
pytest-cov>=6.0
safety>=3.2
bandit==1.7.7
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requests==2.32.4
python-dateutil==2.8.2
python-dateutil>=2.9.0
cryptography==45.0.7
six==1.17.0
ruamel.yaml==0.18.13
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
version='0.18.1',
url="https://github.com/Venafi/vcert-python",
packages=['vcert', 'vcert.parser', 'vcert.policy'],
install_requires=['requests==2.32.4', 'python-dateutil==2.8.2', 'six==1.17.0',
install_requires=['requests==2.32.4', 'python-dateutil>=2.9.0', 'six==1.17.0',
'cryptography==45.0.7', 'ruamel.yaml==0.18.13', 'pynacl==1.5.0'],
description='Python client library for CyberArk Certificate Manager, Self-Hosted and CyberArk Certificate Manager, SaaS.',
long_description=long_description,
Expand Down