aws-cdk.cx-api 2.156.0__tar.gz → 2.158.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.

Potentially problematic release.


This version of aws-cdk.cx-api might be problematic. Click here for more details.

Files changed (19) hide show
  1. {aws_cdk_cx_api-2.156.0/src/aws_cdk.cx_api.egg-info → aws_cdk_cx_api-2.158.0}/PKG-INFO +3 -3
  2. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/setup.py +4 -4
  3. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/src/aws_cdk/cx_api/__init__.py +16 -1
  4. aws_cdk_cx_api-2.158.0/src/aws_cdk/cx_api/_jsii/__init__.py +41 -0
  5. aws_cdk_cx_api-2.158.0/src/aws_cdk/cx_api/_jsii/cx-api@2.158.0.jsii.tgz +0 -0
  6. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0/src/aws_cdk.cx_api.egg-info}/PKG-INFO +3 -3
  7. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
  8. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/src/aws_cdk.cx_api.egg-info/requires.txt +2 -2
  9. aws_cdk_cx_api-2.156.0/src/aws_cdk/cx_api/_jsii/__init__.py +0 -26
  10. aws_cdk_cx_api-2.156.0/src/aws_cdk/cx_api/_jsii/cx-api@2.156.0.jsii.tgz +0 -0
  11. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/LICENSE +0 -0
  12. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/MANIFEST.in +0 -0
  13. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/NOTICE +0 -0
  14. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/README.md +0 -0
  15. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/pyproject.toml +0 -0
  16. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/setup.cfg +0 -0
  17. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/src/aws_cdk/cx_api/py.typed +0 -0
  18. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
  19. {aws_cdk_cx_api-2.156.0 → aws_cdk_cx_api-2.158.0}/src/aws_cdk.cx_api.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk.cx-api
3
- Version: 2.156.0
3
+ Version: 2.158.0
4
4
  Summary: Cloud executable protocol
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -24,9 +24,9 @@ Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
25
  License-File: NOTICE
26
26
  Requires-Dist: aws-cdk.cloud-assembly-schema<37.0.0,>=36.0.5
27
- Requires-Dist: jsii<2.0.0,>=1.102.0
27
+ Requires-Dist: jsii<2.0.0,>=1.103.1
28
28
  Requires-Dist: publication>=0.0.3
29
- Requires-Dist: typeguard~=2.13.3
29
+ Requires-Dist: typeguard<5.0.0,>=2.13.3
30
30
 
31
31
  # Cloud Executable API
32
32
 
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-cdk.cx-api",
8
- "version": "2.156.0",
8
+ "version": "2.158.0",
9
9
  "description": "Cloud executable protocol",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/aws/aws-cdk",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "aws_cdk.cx_api._jsii": [
29
- "cx-api@2.156.0.jsii.tgz"
29
+ "cx-api@2.158.0.jsii.tgz"
30
30
  ],
31
31
  "aws_cdk.cx_api": [
32
32
  "py.typed"
@@ -35,9 +35,9 @@ kwargs = json.loads(
35
35
  "python_requires": "~=3.8",
36
36
  "install_requires": [
37
37
  "aws-cdk.cloud-assembly-schema>=36.0.5, <37.0.0",
38
- "jsii>=1.102.0, <2.0.0",
38
+ "jsii>=1.103.1, <2.0.0",
39
39
  "publication>=0.0.3",
40
- "typeguard~=2.13.3"
40
+ "typeguard>=2.13.3,<5.0.0"
41
41
  ],
42
42
  "classifiers": [
43
43
  "Intended Audience :: Developers",
@@ -407,7 +407,22 @@ import jsii
407
407
  import publication
408
408
  import typing_extensions
409
409
 
410
- from typeguard import check_type
410
+ import typeguard
411
+ from importlib.metadata import version as _metadata_package_version
412
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
413
+
414
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
415
+ if TYPEGUARD_MAJOR_VERSION <= 2:
416
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
417
+ else:
418
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
419
+ pass
420
+ else:
421
+ if TYPEGUARD_MAJOR_VERSION == 3:
422
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
423
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
424
+ else:
425
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
411
426
 
412
427
  from ._jsii import *
413
428
 
@@ -0,0 +1,41 @@
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.cloud_assembly_schema._jsii
32
+
33
+ __jsii_assembly__ = jsii.JSIIAssembly.load(
34
+ "@aws-cdk/cx-api", "2.158.0", __name__[0:-6], "cx-api@2.158.0.jsii.tgz"
35
+ )
36
+
37
+ __all__ = [
38
+ "__jsii_assembly__",
39
+ ]
40
+
41
+ publication.publish()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk.cx-api
3
- Version: 2.156.0
3
+ Version: 2.158.0
4
4
  Summary: Cloud executable protocol
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -24,9 +24,9 @@ Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
25
  License-File: NOTICE
26
26
  Requires-Dist: aws-cdk.cloud-assembly-schema<37.0.0,>=36.0.5
27
- Requires-Dist: jsii<2.0.0,>=1.102.0
27
+ Requires-Dist: jsii<2.0.0,>=1.103.1
28
28
  Requires-Dist: publication>=0.0.3
29
- Requires-Dist: typeguard~=2.13.3
29
+ Requires-Dist: typeguard<5.0.0,>=2.13.3
30
30
 
31
31
  # Cloud Executable API
32
32
 
@@ -12,4 +12,4 @@ src/aws_cdk.cx_api.egg-info/top_level.txt
12
12
  src/aws_cdk/cx_api/__init__.py
13
13
  src/aws_cdk/cx_api/py.typed
14
14
  src/aws_cdk/cx_api/_jsii/__init__.py
15
- src/aws_cdk/cx_api/_jsii/cx-api@2.156.0.jsii.tgz
15
+ src/aws_cdk/cx_api/_jsii/cx-api@2.158.0.jsii.tgz
@@ -1,4 +1,4 @@
1
1
  aws-cdk.cloud-assembly-schema<37.0.0,>=36.0.5
2
- jsii<2.0.0,>=1.102.0
2
+ jsii<2.0.0,>=1.103.1
3
3
  publication>=0.0.3
4
- typeguard~=2.13.3
4
+ typeguard<5.0.0,>=2.13.3
@@ -1,26 +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.cloud_assembly_schema._jsii
17
-
18
- __jsii_assembly__ = jsii.JSIIAssembly.load(
19
- "@aws-cdk/cx-api", "2.156.0", __name__[0:-6], "cx-api@2.156.0.jsii.tgz"
20
- )
21
-
22
- __all__ = [
23
- "__jsii_assembly__",
24
- ]
25
-
26
- publication.publish()