constructs 10.3.1__tar.gz → 10.3.2__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.
- {constructs-10.3.1/src/constructs.egg-info → constructs-10.3.2}/PKG-INFO +3 -3
- {constructs-10.3.1 → constructs-10.3.2}/setup.py +4 -4
- {constructs-10.3.1 → constructs-10.3.2}/src/constructs/__init__.py +1 -16
- constructs-10.3.2/src/constructs/_jsii/__init__.py +24 -0
- constructs-10.3.2/src/constructs/_jsii/constructs@10.3.2.jsii.tgz +0 -0
- {constructs-10.3.1 → constructs-10.3.2/src/constructs.egg-info}/PKG-INFO +3 -3
- {constructs-10.3.1 → constructs-10.3.2}/src/constructs.egg-info/SOURCES.txt +1 -1
- constructs-10.3.2/src/constructs.egg-info/requires.txt +3 -0
- constructs-10.3.1/src/constructs/_jsii/__init__.py +0 -39
- constructs-10.3.1/src/constructs/_jsii/constructs@10.3.1.jsii.tgz +0 -0
- constructs-10.3.1/src/constructs.egg-info/requires.txt +0 -3
- {constructs-10.3.1 → constructs-10.3.2}/LICENSE +0 -0
- {constructs-10.3.1 → constructs-10.3.2}/MANIFEST.in +0 -0
- {constructs-10.3.1 → constructs-10.3.2}/NOTICE +0 -0
- {constructs-10.3.1 → constructs-10.3.2}/README.md +0 -0
- {constructs-10.3.1 → constructs-10.3.2}/pyproject.toml +0 -0
- {constructs-10.3.1 → constructs-10.3.2}/setup.cfg +0 -0
- {constructs-10.3.1 → constructs-10.3.2}/src/constructs/py.typed +0 -0
- {constructs-10.3.1 → constructs-10.3.2}/src/constructs.egg-info/dependency_links.txt +0 -0
- {constructs-10.3.1 → constructs-10.3.2}/src/constructs.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: constructs
|
|
3
|
-
Version: 10.3.
|
|
3
|
+
Version: 10.3.2
|
|
4
4
|
Summary: A programming model for software-defined state
|
|
5
5
|
Home-page: https://github.com/aws/constructs
|
|
6
6
|
Author: Amazon Web Services<aws-cdk-dev@amazon.com>
|
|
@@ -21,9 +21,9 @@ Requires-Python: ~=3.8
|
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
23
|
License-File: NOTICE
|
|
24
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.102.0
|
|
25
25
|
Requires-Dist: publication>=0.0.3
|
|
26
|
-
Requires-Dist: typeguard
|
|
26
|
+
Requires-Dist: typeguard~=2.13.3
|
|
27
27
|
|
|
28
28
|
# Constructs
|
|
29
29
|
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "constructs",
|
|
8
|
-
"version": "10.3.
|
|
8
|
+
"version": "10.3.2",
|
|
9
9
|
"description": "A programming model for software-defined state",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/aws/constructs",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"constructs._jsii": [
|
|
29
|
-
"constructs@10.3.
|
|
29
|
+
"constructs@10.3.2.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"constructs": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,9 +34,9 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.8",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"jsii>=1.
|
|
37
|
+
"jsii>=1.102.0, <2.0.0",
|
|
38
38
|
"publication>=0.0.3",
|
|
39
|
-
"typeguard
|
|
39
|
+
"typeguard~=2.13.3"
|
|
40
40
|
],
|
|
41
41
|
"classifiers": [
|
|
42
42
|
"Intended Audience :: Developers",
|
|
@@ -41,22 +41,7 @@ import jsii
|
|
|
41
41
|
import publication
|
|
42
42
|
import typing_extensions
|
|
43
43
|
|
|
44
|
-
import
|
|
45
|
-
from importlib.metadata import version as _metadata_package_version
|
|
46
|
-
TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
|
|
47
|
-
|
|
48
|
-
def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
|
|
49
|
-
if TYPEGUARD_MAJOR_VERSION <= 2:
|
|
50
|
-
return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
|
|
51
|
-
else:
|
|
52
|
-
if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
|
|
53
|
-
pass
|
|
54
|
-
else:
|
|
55
|
-
if TYPEGUARD_MAJOR_VERSION == 3:
|
|
56
|
-
typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
|
|
57
|
-
typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
|
|
58
|
-
else:
|
|
59
|
-
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
|
44
|
+
from typeguard import check_type
|
|
60
45
|
|
|
61
46
|
from ._jsii import *
|
|
62
47
|
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
17
|
+
"constructs", "10.3.2", __name__[0:-6], "constructs@10.3.2.jsii.tgz"
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
"__jsii_assembly__",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
publication.publish()
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: constructs
|
|
3
|
-
Version: 10.3.
|
|
3
|
+
Version: 10.3.2
|
|
4
4
|
Summary: A programming model for software-defined state
|
|
5
5
|
Home-page: https://github.com/aws/constructs
|
|
6
6
|
Author: Amazon Web Services<aws-cdk-dev@amazon.com>
|
|
@@ -21,9 +21,9 @@ Requires-Python: ~=3.8
|
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
23
|
License-File: NOTICE
|
|
24
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.102.0
|
|
25
25
|
Requires-Dist: publication>=0.0.3
|
|
26
|
-
Requires-Dist: typeguard
|
|
26
|
+
Requires-Dist: typeguard~=2.13.3
|
|
27
27
|
|
|
28
28
|
# Constructs
|
|
29
29
|
|
|
@@ -1,39 +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
|
-
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
|
-
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
32
|
-
"constructs", "10.3.1", __name__[0:-6], "constructs@10.3.1.jsii.tgz"
|
|
33
|
-
)
|
|
34
|
-
|
|
35
|
-
__all__ = [
|
|
36
|
-
"__jsii_assembly__",
|
|
37
|
-
]
|
|
38
|
-
|
|
39
|
-
publication.publish()
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|