aws-solutions-constructs.core 2.67.1__tar.gz → 2.69.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {aws_solutions_constructs_core-2.67.1/src/aws_solutions_constructs.core.egg-info → aws_solutions_constructs_core-2.69.0}/PKG-INFO +5 -5
  2. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/setup.py +6 -6
  3. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/src/aws_solutions_constructs/core/__init__.py +16 -1
  4. aws_solutions_constructs_core-2.69.0/src/aws_solutions_constructs/core/_jsii/__init__.py +43 -0
  5. aws_solutions_constructs_core-2.69.0/src/aws_solutions_constructs/core/_jsii/core@2.69.0.jsii.tgz +0 -0
  6. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0/src/aws_solutions_constructs.core.egg-info}/PKG-INFO +5 -5
  7. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/src/aws_solutions_constructs.core.egg-info/SOURCES.txt +1 -1
  8. aws_solutions_constructs_core-2.69.0/src/aws_solutions_constructs.core.egg-info/requires.txt +6 -0
  9. aws_solutions_constructs_core-2.67.1/src/aws_solutions_constructs/core/_jsii/__init__.py +0 -28
  10. aws_solutions_constructs_core-2.67.1/src/aws_solutions_constructs/core/_jsii/core@2.67.1.jsii.tgz +0 -0
  11. aws_solutions_constructs_core-2.67.1/src/aws_solutions_constructs.core.egg-info/requires.txt +0 -6
  12. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/LICENSE +0 -0
  13. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/MANIFEST.in +0 -0
  14. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/README.md +0 -0
  15. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/pyproject.toml +0 -0
  16. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/setup.cfg +0 -0
  17. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/src/aws_solutions_constructs/core/py.typed +0 -0
  18. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/src/aws_solutions_constructs.core.egg-info/dependency_links.txt +0 -0
  19. {aws_solutions_constructs_core-2.67.1 → aws_solutions_constructs_core-2.69.0}/src/aws_solutions_constructs.core.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-solutions-constructs.core
3
- Version: 2.67.1
3
+ Version: 2.69.0
4
4
  Summary: Core CDK Construct for patterns library
5
5
  Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
6
  Author: Amazon Web Services
@@ -19,12 +19,12 @@ Classifier: License :: OSI Approved
19
19
  Requires-Python: ~=3.8
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: aws-cdk-lib==2.151.0
23
- Requires-Dist: aws-cdk.integ-tests-alpha==2.151.0.a0
22
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.154.1
23
+ Requires-Dist: aws-cdk.integ-tests-alpha==2.154.1.a0
24
24
  Requires-Dist: constructs<11.0.0,>=10.0.0
25
- Requires-Dist: jsii<2.0.0,>=1.102.0
25
+ Requires-Dist: jsii<2.0.0,>=1.103.1
26
26
  Requires-Dist: publication>=0.0.3
27
- Requires-Dist: typeguard~=2.13.3
27
+ Requires-Dist: typeguard<5.0.0,>=2.13.3
28
28
 
29
29
  # core module
30
30
 
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-solutions-constructs.core",
8
- "version": "2.67.1",
8
+ "version": "2.69.0",
9
9
  "description": "Core CDK Construct for patterns library",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/awslabs/aws-solutions-constructs.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "aws_solutions_constructs.core._jsii": [
29
- "core@2.67.1.jsii.tgz"
29
+ "core@2.69.0.jsii.tgz"
30
30
  ],
31
31
  "aws_solutions_constructs.core": [
32
32
  "py.typed"
@@ -34,12 +34,12 @@ kwargs = json.loads(
34
34
  },
35
35
  "python_requires": "~=3.8",
36
36
  "install_requires": [
37
- "aws-cdk-lib==2.151.0",
38
- "aws-cdk.integ-tests-alpha==2.151.0.a0",
37
+ "aws-cdk-lib>=2.154.1, <3.0.0",
38
+ "aws-cdk.integ-tests-alpha==2.154.1.a0",
39
39
  "constructs>=10.0.0, <11.0.0",
40
- "jsii>=1.102.0, <2.0.0",
40
+ "jsii>=1.103.1, <2.0.0",
41
41
  "publication>=0.0.3",
42
- "typeguard~=2.13.3"
42
+ "typeguard>=2.13.3,<5.0.0"
43
43
  ],
44
44
  "classifiers": [
45
45
  "Intended Audience :: Developers",
@@ -96,7 +96,22 @@ import jsii
96
96
  import publication
97
97
  import typing_extensions
98
98
 
99
- from typeguard import check_type
99
+ import typeguard
100
+ from importlib.metadata import version as _metadata_package_version
101
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
102
+
103
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
104
+ if TYPEGUARD_MAJOR_VERSION <= 2:
105
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
106
+ else:
107
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
108
+ pass
109
+ else:
110
+ if TYPEGUARD_MAJOR_VERSION == 3:
111
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
112
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
113
+ else:
114
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
100
115
 
101
116
  from ._jsii import *
102
117
 
@@ -0,0 +1,43 @@
1
+ from pkgutil import extend_path
2
+ __path__ = extend_path(__path__, __name__)
3
+
4
+ import abc
5
+ import builtins
6
+ import datetime
7
+ import enum
8
+ import typing
9
+
10
+ import jsii
11
+ import publication
12
+ import typing_extensions
13
+
14
+ import typeguard
15
+ from importlib.metadata import version as _metadata_package_version
16
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
17
+
18
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
19
+ if TYPEGUARD_MAJOR_VERSION <= 2:
20
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
21
+ else:
22
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
23
+ pass
24
+ else:
25
+ if TYPEGUARD_MAJOR_VERSION == 3:
26
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
27
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
28
+ else:
29
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
30
+
31
+ import aws_cdk._jsii
32
+ import aws_cdk.integ_tests_alpha._jsii
33
+ import constructs._jsii
34
+
35
+ __jsii_assembly__ = jsii.JSIIAssembly.load(
36
+ "@aws-solutions-constructs/core", "2.69.0", __name__[0:-6], "core@2.69.0.jsii.tgz"
37
+ )
38
+
39
+ __all__ = [
40
+ "__jsii_assembly__",
41
+ ]
42
+
43
+ publication.publish()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-solutions-constructs.core
3
- Version: 2.67.1
3
+ Version: 2.69.0
4
4
  Summary: Core CDK Construct for patterns library
5
5
  Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
6
  Author: Amazon Web Services
@@ -19,12 +19,12 @@ Classifier: License :: OSI Approved
19
19
  Requires-Python: ~=3.8
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: aws-cdk-lib==2.151.0
23
- Requires-Dist: aws-cdk.integ-tests-alpha==2.151.0.a0
22
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.154.1
23
+ Requires-Dist: aws-cdk.integ-tests-alpha==2.154.1.a0
24
24
  Requires-Dist: constructs<11.0.0,>=10.0.0
25
- Requires-Dist: jsii<2.0.0,>=1.102.0
25
+ Requires-Dist: jsii<2.0.0,>=1.103.1
26
26
  Requires-Dist: publication>=0.0.3
27
- Requires-Dist: typeguard~=2.13.3
27
+ Requires-Dist: typeguard<5.0.0,>=2.13.3
28
28
 
29
29
  # core module
30
30
 
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.core.egg-info/top_level.txt
11
11
  src/aws_solutions_constructs/core/__init__.py
12
12
  src/aws_solutions_constructs/core/py.typed
13
13
  src/aws_solutions_constructs/core/_jsii/__init__.py
14
- src/aws_solutions_constructs/core/_jsii/core@2.67.1.jsii.tgz
14
+ src/aws_solutions_constructs/core/_jsii/core@2.69.0.jsii.tgz
@@ -0,0 +1,6 @@
1
+ aws-cdk-lib<3.0.0,>=2.154.1
2
+ aws-cdk.integ-tests-alpha==2.154.1.a0
3
+ constructs<11.0.0,>=10.0.0
4
+ jsii<2.0.0,>=1.103.1
5
+ publication>=0.0.3
6
+ typeguard<5.0.0,>=2.13.3
@@ -1,28 +0,0 @@
1
- from pkgutil import extend_path
2
- __path__ = extend_path(__path__, __name__)
3
-
4
- import abc
5
- import builtins
6
- import datetime
7
- import enum
8
- import typing
9
-
10
- import jsii
11
- import publication
12
- import typing_extensions
13
-
14
- from typeguard import check_type
15
-
16
- import aws_cdk._jsii
17
- import aws_cdk.integ_tests_alpha._jsii
18
- import constructs._jsii
19
-
20
- __jsii_assembly__ = jsii.JSIIAssembly.load(
21
- "@aws-solutions-constructs/core", "2.67.1", __name__[0:-6], "core@2.67.1.jsii.tgz"
22
- )
23
-
24
- __all__ = [
25
- "__jsii_assembly__",
26
- ]
27
-
28
- publication.publish()
@@ -1,6 +0,0 @@
1
- aws-cdk-lib==2.151.0
2
- aws-cdk.integ-tests-alpha==2.151.0.a0
3
- constructs<11.0.0,>=10.0.0
4
- jsii<2.0.0,>=1.102.0
5
- publication>=0.0.3
6
- typeguard~=2.13.3