Skip to content

chore: Refer to renamed MPL libraries #698

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

Merged
merged 12 commits into from
Sep 6, 2024
Merged
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 @ git+https://github.com/aws/aws-cryptographic-material-providers-library.git@lucmcdon/python-mpl-v2#subdirectory=AwsCryptographicMaterialProviders/runtimes/python
aws-cryptographic-materialproviders @ git+https://github.com/aws/aws-cryptographic-material-providers-library.git@python-with-dafny-code#subdirectory=AwsCryptographicMaterialProviders/runtimes/python
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 @ git+https://github.com/aws/aws-cryptographic-material-providers-library.git@lucmcdon/python-mpl-v2#subdirectory=AwsCryptographicMaterialProviders/runtimes/python
aws-cryptographic-materialproviders @ git+https://github.com/aws/aws-cryptographic-material-providers-library.git@python-with-dafny-code#subdirectory=AwsCryptographicMaterialProviders/runtimes/python
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def get_requirements():
# TODO-MPL: Point at PyPI once MPL is released.
# This blocks releasing ESDK-Python MPL integration.
extras_require={
"MPL": ["aws-cryptographic-material-providers @" \
"MPL": ["aws-cryptographic-materialproviders @" \
"git+https://github.com/aws/aws-cryptographic-material-providers-library.git@" \
"lucmcdon/python-mpl-v2#subdirectory=AwsCryptographicMaterialProviders/runtimes/python"],
"python-with-dafny-code#subdirectory=AwsCryptographicMaterialProviders/runtimes/python"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
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 @@
amazon-cryptographic-material-providers-test-vectors @ git+https://github.com/aws/aws-cryptographic-material-providers-library.git@lucmcdon/python-mpl-v2#subdirectory=TestVectorsAwsCryptographicMaterialProviders/runtimes/python
aws-cryptography-internal-mpl-testvectors @ git+https://github.com/aws/aws-cryptographic-material-providers-library.git@python-with-dafny-code#subdirectory=TestVectorsAwsCryptographicMaterialProviders/runtimes/python
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
"""Singleton provider for the KeyVectors client."""
# # Ignore missing MPL TestVectors for pylint, but the MPL TestVectors is required for this file
# pylint: disable=import-error
from aws_cryptography_materialproviderstestvectorkeys.smithygenerated.\
from aws_cryptography_materialproviders_test_vectors.smithygenerated.\
aws_cryptography_materialproviderstestvectorkeys.client import (
KeyVectors,
)
from aws_cryptography_materialproviderstestvectorkeys.smithygenerated.\
from aws_cryptography_materialproviders_test_vectors.smithygenerated.\
aws_cryptography_materialproviderstestvectorkeys.config import (
KeyVectorsConfig
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Ignore missing MPL for pylint, but the MPL is required for this example
# noqa pylint: disable=import-error
from aws_cryptography_materialproviderstestvectorkeys.smithygenerated.\
from aws_cryptography_materialproviders_test_vectors.smithygenerated.\
aws_cryptography_materialproviderstestvectorkeys.models import (
GetKeyDescriptionInput,
GetKeyDescriptionOutput,
Expand All @@ -31,7 +31,7 @@
from aws_cryptographic_materialproviders.mpl.models import CreateMultiKeyringInput

import _dafny
from standard_library.internaldafny.generated import UTF8
from smithy_dafny_standard_library.internaldafny.generated import UTF8

# Ignore pylint not being able to read a module that requires the MPL
# pylint: disable=no-name-in-module
Expand Down
Loading