From b57881cb73db086ff69dcdb54777927c01c0a325 Mon Sep 17 00:00:00 2001 From: tedder Date: Sun, 21 Jul 2024 21:26:44 +0000 Subject: [PATCH] v1.3.1: require py 3.7+ --- HISTORY.md | 7 +++++++ requests_aws4auth/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 6d5a511..21d1bac 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,10 @@ +1.3.1 (2024-07-21) +========= + +**Changes** + +- explicitly set python requirement to 3.7. + 1.3.0 (2024-07-21) ========= diff --git a/requests_aws4auth/__init__.py b/requests_aws4auth/__init__.py index 2d706e8..d548842 100644 --- a/requests_aws4auth/__init__.py +++ b/requests_aws4auth/__init__.py @@ -46,7 +46,7 @@ requests-aws4auth requires the `Requests`_ library by Kenneth Reitz. -requests-aws4auth supports Python 3.3 and up. Python 2.7 may work but is not supported after the version 1.0.x tree. +requests-aws4auth supports Python 3.7 and up. Basic usage ----------- @@ -199,4 +199,4 @@ del aws4signingkey del exceptions -__version__ = '1.3.0' +__version__ = '1.3.1' diff --git a/setup.py b/setup.py index f5f8df6..b0cdf47 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ def find_version(*file_paths): }, packages=['requests_aws4auth'], package_data={'requests_aws4auth': ['test/requests_aws4auth_test.py']}, - python_requires=">=3.3", + python_requires=">=3.7", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',