From 5bba85411acfbbcbbdb8394aaca29152126ee179 Mon Sep 17 00:00:00 2001 From: jiasli <4003950+jiasli@users.noreply.github.com> Date: Thu, 7 Apr 2022 14:26:49 +0800 Subject: [PATCH] pycryptodome --- src/k8s-configuration/HISTORY.rst | 6 +++++- src/k8s-configuration/setup.py | 6 ++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/k8s-configuration/HISTORY.rst b/src/k8s-configuration/HISTORY.rst index 150f337dd9a..ad3edc7053a 100644 --- a/src/k8s-configuration/HISTORY.rst +++ b/src/k8s-configuration/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.5.1 +++++++++++++++++++ +* Bump pycryptodome to 3.14.1 to support Python 3.10 + 1.5.0 ++++++++++++++++++ * Update models to 2022-03-01 for GA @@ -45,4 +49,4 @@ Release History ++++++++++++++++++ * Support api-version 2021-03-01 * Update helm operator parameter aliases -* Migrate from k8sconfiguration to k8s-configuration \ No newline at end of file +* Migrate from k8sconfiguration to k8s-configuration diff --git a/src/k8s-configuration/setup.py b/src/k8s-configuration/setup.py index cc7080203c8..29a8a618f65 100644 --- a/src/k8s-configuration/setup.py +++ b/src/k8s-configuration/setup.py @@ -16,7 +16,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") -VERSION = "1.5.0" +VERSION = "1.5.1" # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -29,10 +29,12 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "License :: OSI Approved :: MIT License", ] -DEPENDENCIES = ["pycryptodome~=3.9.8"] +DEPENDENCIES = ["pycryptodome~=3.14.1"] with open("README.rst", "r", encoding="utf-8") as f: README = f.read()