Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update release policy, fix linter #733

Merged
merged 3 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 4 additions & 0 deletions SUPPORT_POLICY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ This table describes the current support status of each major version of the AWS
-
-
* - 3.x
- General Availability
- Maintenance
- 2025-05-20
* - 4.x
- General Availability
-
-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class HalfSigningCryptoMaterialsManagerFromMPL(CryptoMaterialsManagerFromMPL):

wrapped_default_cmm = attr.ib(validator=attr.validators.instance_of(CryptoMaterialsManagerFromMPL))

def __init__(self, master_key_provider):
def __init__(self, master_key_provider): # pylint: disable=super-init-not-called
"""Create a new CMM that wraps a the given CMM."""
mpl = AwsCryptographicMaterialProviders(MaterialProvidersConfig())
mpl_cmm = mpl.create_default_cryptographic_materials_manager(
Expand Down Expand Up @@ -89,7 +89,7 @@ class HalfSigningEncryptionMaterialsFromMPL(EncryptionMaterialsFromMPL):

_underlying_materials: EncryptionMaterialsFromMPL

def __init__(self, underlying_materials):
def __init__(self, underlying_materials): # pylint: disable=super-init-not-called
"""Create a HalfSigningEncryptionMaterialsFromMPL wrapper
around underlying_materials.
"""
Expand Down Expand Up @@ -159,7 +159,7 @@ class ProviderInfoChangingCryptoMaterialsManagerFromMPL(CryptoMaterialsManagerFr
wrapped_cmm = attr.ib(validator=attr.validators.instance_of(CryptoMaterialsManager))
new_provider_info = attr.ib(validator=attr.validators.instance_of(six.string_types))

def __init__(self, materials_manager, new_provider_info):
def __init__(self, materials_manager, new_provider_info): # pylint: disable=super-init-not-called
"""Create a new CMM that wraps a the given CMM."""
self.wrapped_cmm = materials_manager
self.new_provider_info = new_provider_info
Expand Down
Loading