cloudstructs 0.9.0__tar.gz → 0.9.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cloudstructs
3
- Version: 0.9.0
3
+ Version: 0.9.2
4
4
  Summary: High-level constructs for AWS CDK
5
5
  Home-page: https://github.com/jogold/cloudstructs.git
6
6
  Author: Jonathan Goldwasser<jonathan.goldwasser@gmail.com>
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "cloudstructs",
8
- "version": "0.9.0",
8
+ "version": "0.9.2",
9
9
  "description": "High-level constructs for AWS CDK",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/jogold/cloudstructs.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "cloudstructs._jsii": [
29
- "cloudstructs@0.9.0.jsii.tgz"
29
+ "cloudstructs@0.9.2.jsii.tgz"
30
30
  ],
31
31
  "cloudstructs": [
32
32
  "py.typed"
@@ -36,7 +36,7 @@ kwargs = json.loads(
36
36
  "install_requires": [
37
37
  "aws-cdk-lib>=2.133.0, <3.0.0",
38
38
  "constructs>=10.0.5, <11.0.0",
39
- "jsii>=1.95.0, <2.0.0",
39
+ "jsii>=1.96.0, <2.0.0",
40
40
  "publication>=0.0.3",
41
41
  "typeguard~=2.13.3"
42
42
  ],
@@ -32,6 +32,9 @@ Version >= 0.2.0 requires AWS CDK v2.
32
32
  Toolkit.
33
33
  * [`UrlShortener`](src/url-shortener) Deploy an URL shortener API
34
34
  '''
35
+ from pkgutil import extend_path
36
+ __path__ = extend_path(__path__, __name__)
37
+
35
38
  import abc
36
39
  import builtins
37
40
  import datetime
@@ -1,3 +1,6 @@
1
+ from pkgutil import extend_path
2
+ __path__ = extend_path(__path__, __name__)
3
+
1
4
  import abc
2
5
  import builtins
3
6
  import datetime
@@ -14,7 +17,7 @@ import aws_cdk._jsii
14
17
  import constructs._jsii
15
18
 
16
19
  __jsii_assembly__ = jsii.JSIIAssembly.load(
17
- "cloudstructs", "0.9.0", __name__[0:-6], "cloudstructs@0.9.0.jsii.tgz"
20
+ "cloudstructs", "0.9.2", __name__[0:-6], "cloudstructs@0.9.2.jsii.tgz"
18
21
  )
19
22
 
20
23
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cloudstructs
3
- Version: 0.9.0
3
+ Version: 0.9.2
4
4
  Summary: High-level constructs for AWS CDK
5
5
  Home-page: https://github.com/jogold/cloudstructs.git
6
6
  Author: Jonathan Goldwasser<jonathan.goldwasser@gmail.com>
@@ -11,4 +11,4 @@ src/cloudstructs.egg-info/dependency_links.txt
11
11
  src/cloudstructs.egg-info/requires.txt
12
12
  src/cloudstructs.egg-info/top_level.txt
13
13
  src/cloudstructs/_jsii/__init__.py
14
- src/cloudstructs/_jsii/cloudstructs@0.9.0.jsii.tgz
14
+ src/cloudstructs/_jsii/cloudstructs@0.9.2.jsii.tgz
@@ -1,5 +1,5 @@
1
1
  aws-cdk-lib<3.0.0,>=2.133.0
2
2
  constructs<11.0.0,>=10.0.5
3
- jsii<2.0.0,>=1.95.0
3
+ jsii<2.0.0,>=1.96.0
4
4
  publication>=0.0.3
5
5
  typeguard~=2.13.3
File without changes
File without changes
File without changes
File without changes