Skip to content

Commit 21ba194

Browse files
fix(deps): convert setup.py install_requires to range constraints — VC-53626
1 parent 6aa6cda commit 21ba194

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
version='0.19.0',
1515
url="https://github.com/Venafi/vcert-python",
1616
packages=['vcert', 'vcert.parser', 'vcert.policy'],
17-
install_requires=['requests==2.32.4', 'python-dateutil==2.9.0.post0', 'six==1.17.0',
18-
'cryptography==48.0.1', 'ruamel.yaml==0.18.17', 'pynacl==1.6.2'],
17+
install_requires=['requests>=2.32.4', 'python-dateutil>=2.9.0.post0', 'six>=1.17.0',
18+
'cryptography>=48.0.1,<50', 'ruamel.yaml>=0.18.17,<0.19', 'pynacl>=1.6.2'],
19+
python_requires='>=3.9.2,<4',
1920
description='Python client library for CyberArk Certificate Manager, Self-Hosted and CyberArk Certificate Manager, SaaS.',
2021
long_description=long_description,
2122
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)