From c24a0fbba2281731d4bfc35552d6823a37d05f40 Mon Sep 17 00:00:00 2001 From: YuvalShAz <159810020+YuvalShAz@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:12:22 -0500 Subject: [PATCH 1/2] Update README.md to reflect importlib.metadata usage `importlib.metadata` was introduced in python 3.8 but our guidance says 3.7 and up will work --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 518280b..84f34b2 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ The AWS Secrets Manager Python caching client enables in-process caching of secr To use this client you must have: -* Python 3.7 or newer. Use of Python versions 3.6 or older are not supported. +* Python 3.8 or newer. Use of Python versions 3.7 or older are not supported. * An Amazon Web Services (AWS) account to access secrets stored in AWS Secrets Manager. * **To create an AWS account**, go to [Sign In or Create an AWS Account](https://portal.aws.amazon.com/gp/aws/developer/registration/index.html) and then choose **I am a new user.** Follow the instructions to create an AWS account. From fb7d454e72d62bf3d0a803916832c0b6d89bbe31 Mon Sep 17 00:00:00 2001 From: yuval shechter Date: Wed, 9 Oct 2024 15:04:50 -0500 Subject: [PATCH 2/2] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 81b8f81..1066b31 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ ], keywords='secretsmanager secrets manager development cache caching client', use_scm_version=True, - python_requires='>3.5', + python_requires='>=3.8', install_requires=['botocore'], setup_requires=['pytest-runner', 'setuptools-scm'], tests_require=['pytest', 'pytest-cov', 'pytest-sugar', 'codecov']