Open
Description
When trying to install oci
with pyopenssl==25.0.0
we get this error:
× No solution found when resolving dependencies:
╰─▶ Because oci==2.143.0 depends on pyopenssl>=17.5.0,<25.0.0 and you require oci==2.143.0, we can conclude that you require pyopenssl>=17.5.0,<25.0.0.
And because you require pyopenssl==25.0.0, we can conclude that your requirements are unsatisfiable.
This is due to this line in requirements.txt.
pyOpenSSL>=17.5.0,<25.0.0
https://github.com/oracle/oci-python-sdk/blob/master/requirements.txt#L7
Unless there are known forward compatibility issues, preemptive blocking of future versions is usually frowned upon as it can cause unnecessary grief for users with larger dependency trees.