I tried to create a virtual environment for the project and installed the dependencies using requirements.txt. But I received the below conflicting message:
The conflict is caused by:
The user requested cryptography==40.0.2
azure-storage-blob 12.14.1 depends on cryptography>=2.1.4
msal 1.20.0 depends on cryptography<41 and >=0.6
msoffcrypto-tool 5.0.0 depends on cryptography>=2.3
paramiko 2.12.0 depends on cryptography>=2.5
pyiotools 0.3.18 depends on cryptography
pymiscutils 0.3.14 depends on cryptography
pyopenssl 24.2.1 depends on cryptography<44 and >=41.0.5
As seen above msal asks for cryptography<41 whereas pyopenssl asks for cryptography>41.I am not sure how to resolve this conflicting dependency. Please help on this.