Skip to content

Commit

Permalink
v1.3.1: require py 3.7+
Browse files Browse the repository at this point in the history
  • Loading branch information
tedder committed Jul 21, 2024
1 parent dfdda52 commit b57881c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.3.1 (2024-07-21)
=========

**Changes**

- explicitly set python requirement to 3.7.

1.3.0 (2024-07-21)
=========

Expand Down
4 changes: 2 additions & 2 deletions requests_aws4auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------
Expand Down Expand Up @@ -199,4 +199,4 @@
del aws4signingkey
del exceptions

__version__ = '1.3.0'
__version__ = '1.3.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit b57881c

Please sign in to comment.