Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Changelog
*********

4.0.3 -- 2025-07-03
===================

Maintenance
-----------
* deps: Extend supported `MPL`_ versions to include v1.11.1
`#770 <https://github.com/aws/aws-encryption-sdk-python/pull/770>`_

MPL v1.11.1 updates pytz version range to include 2025 releases.

4.0.2 -- 2025-06-30
===================

Expand Down
1 change: 1 addition & 0 deletions dev_requirements/linter-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ flake8-bugbear==22.9.11
flake8-docstrings==1.7.0
flake8-print==5.0.0
isort==5.11.4
pbr==2.0.0 # needed due to to bandit
pyflakes==2.4.0
pylint==2.13.5
readme_renderer==37.3
Expand Down
2 changes: 1 addition & 1 deletion performance_tests/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Required Prerequisites
Recommended Prerequisites
=========================

* aws-cryptographic-material-providers: == 1.11.0
* aws-cryptographic-material-providers: == 1.11.1
* Requires Python 3.11+.

*****
Expand Down
2 changes: 1 addition & 1 deletion performance_tests/requirements_mpl.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-cryptographic-material-providers>=1.7.4,<=1.11.0
aws-cryptographic-material-providers>=1.7.4,<=1.11.1
2 changes: 1 addition & 1 deletion requirements_mpl.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-cryptographic-material-providers>=1.7.4,<=1.11.0
aws-cryptographic-material-providers>=1.7.4,<=1.11.1
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""AWS Encryption SDK for Python."""

import os
import re

Expand All @@ -10,7 +11,9 @@

def read(*args):
"""Reads complete file contents."""
return open(os.path.join(HERE, *args), encoding="utf-8").read() # pylint: disable=consider-using-with
return open(
os.path.join(HERE, *args), encoding="utf-8"
).read() # pylint: disable=consider-using-with


def get_version():
Expand Down Expand Up @@ -40,7 +43,7 @@ def get_requirements():
license="Apache License 2.0",
install_requires=get_requirements(),
extras_require={
"MPL": ["aws-cryptographic-material-providers>=1.7.4,<=1.11.0"],
"MPL": ["aws-cryptographic-material-providers>=1.7.4,<=1.11.1"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion src/aws_encryption_sdk/identifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# We only actually need these imports when running the mypy checks
pass

__version__ = "4.0.2"
__version__ = "4.0.3"
USER_AGENT_SUFFIX = "AwsEncryptionSdkPython/{}".format(__version__)


Expand Down
2 changes: 1 addition & 1 deletion test_vector_handlers/requirements_mpl.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-cryptographic-material-providers>=1.7.4,<=1.11.0
aws-cryptographic-material-providers>=1.7.4,<=1.11.1
Loading