mirror of
https://github.com/OpenKMIP/PyKMIP.git
synced 2025-10-18 06:04:53 +02:00
This change updates the PyKMIP clients, adding support for getting and setting the KMIP version they use when making KMIP requests. You can now do: >>> client.kmip_version to get the KMIP version enumeration the client is using. Use: >>> client.kmip_version = enums.KMIPVersion.KMIP_1_1 to set the KMIP version the client uses. The client unit tests have been updated to check and cover these changes. Fixes #470