cdk-code-server 0.0.10__tar.gz → 0.0.11__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.
- {cdk_code_server-0.0.10/src/cdk_code_server.egg-info → cdk_code_server-0.0.11}/PKG-INFO +4 -5
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/pyproject.toml +2 -2
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/setup.py +5 -6
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/src/cdk_code-server/__init__.py +16 -1
- cdk_code_server-0.0.11/src/cdk_code-server/_jsii/__init__.py +44 -0
- cdk_code_server-0.0.11/src/cdk_code-server/_jsii/cdk-code-server@0.0.11.jsii.tgz +0 -0
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11/src/cdk_code_server.egg-info}/PKG-INFO +4 -5
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/src/cdk_code_server.egg-info/SOURCES.txt +1 -1
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/src/cdk_code_server.egg-info/requires.txt +2 -2
- cdk_code_server-0.0.10/src/cdk_code-server/_jsii/__init__.py +0 -29
- cdk_code_server-0.0.10/src/cdk_code-server/_jsii/cdk-code-server@0.0.10.jsii.tgz +0 -0
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/LICENSE +0 -0
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/MANIFEST.in +0 -0
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/README.md +0 -0
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/setup.cfg +0 -0
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/src/cdk_code-server/py.typed +0 -0
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/src/cdk_code_server.egg-info/dependency_links.txt +0 -0
- {cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/src/cdk_code_server.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-code-server
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.11
|
4
4
|
Summary: CDK Construct for a VSCode Server development environment on EC2
|
5
5
|
Home-page: https://github.com/badmintoncryer/cdk-code-server.git
|
6
6
|
Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
|
@@ -10,23 +10,22 @@ Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Classifier: Programming Language :: JavaScript
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
17
16
|
Classifier: Typing :: Typed
|
18
17
|
Classifier: Development Status :: 5 - Production/Stable
|
19
18
|
Classifier: License :: OSI Approved
|
20
|
-
Requires-Python: ~=3.
|
19
|
+
Requires-Python: ~=3.9
|
21
20
|
Description-Content-Type: text/markdown
|
22
21
|
License-File: LICENSE
|
23
22
|
Requires-Dist: aws-cdk-lib<3.0.0,>=2.143.0
|
24
23
|
Requires-Dist: cdk-preinstalled-amazon-linux-ec2<0.0.11,>=0.0.10
|
25
24
|
Requires-Dist: constructs<11.0.0,>=10.0.5
|
26
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
25
|
+
Requires-Dist: jsii<2.0.0,>=1.112.0
|
27
26
|
Requires-Dist: open-constructs-aws-cdk==0.0.0
|
28
27
|
Requires-Dist: publication>=0.0.3
|
29
|
-
Requires-Dist: typeguard
|
28
|
+
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
30
29
|
|
31
30
|
# CDK VSCode Server Construct
|
32
31
|
|
@@ -1,9 +1,9 @@
|
|
1
1
|
[build-system]
|
2
|
-
requires = ["setuptools~=
|
2
|
+
requires = ["setuptools~=75.3.2", "wheel~=0.42"]
|
3
3
|
build-backend = "setuptools.build_meta"
|
4
4
|
|
5
5
|
[tool.pyright]
|
6
6
|
defineConstant = { DEBUG = true }
|
7
|
-
pythonVersion = "3.
|
7
|
+
pythonVersion = "3.9"
|
8
8
|
pythonPlatform = "All"
|
9
9
|
reportSelfClsParameterName = false
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
5
5
|
"""
|
6
6
|
{
|
7
7
|
"name": "cdk-code-server",
|
8
|
-
"version": "0.0.
|
8
|
+
"version": "0.0.11",
|
9
9
|
"description": "CDK Construct for a VSCode Server development environment on EC2",
|
10
10
|
"license": "Apache-2.0",
|
11
11
|
"url": "https://github.com/badmintoncryer/cdk-code-server.git",
|
@@ -26,28 +26,27 @@ kwargs = json.loads(
|
|
26
26
|
],
|
27
27
|
"package_data": {
|
28
28
|
"cdk_code-server._jsii": [
|
29
|
-
"cdk-code-server@0.0.
|
29
|
+
"cdk-code-server@0.0.11.jsii.tgz"
|
30
30
|
],
|
31
31
|
"cdk_code-server": [
|
32
32
|
"py.typed"
|
33
33
|
]
|
34
34
|
},
|
35
|
-
"python_requires": "~=3.
|
35
|
+
"python_requires": "~=3.9",
|
36
36
|
"install_requires": [
|
37
37
|
"aws-cdk-lib>=2.143.0, <3.0.0",
|
38
38
|
"cdk-preinstalled-amazon-linux-ec2>=0.0.10, <0.0.11",
|
39
39
|
"constructs>=10.0.5, <11.0.0",
|
40
|
-
"jsii>=1.
|
40
|
+
"jsii>=1.112.0, <2.0.0",
|
41
41
|
"open-constructs-aws-cdk==0.0.0",
|
42
42
|
"publication>=0.0.3",
|
43
|
-
"typeguard
|
43
|
+
"typeguard>=2.13.3,<4.3.0"
|
44
44
|
],
|
45
45
|
"classifiers": [
|
46
46
|
"Intended Audience :: Developers",
|
47
47
|
"Operating System :: OS Independent",
|
48
48
|
"Programming Language :: JavaScript",
|
49
49
|
"Programming Language :: Python :: 3 :: Only",
|
50
|
-
"Programming Language :: Python :: 3.8",
|
51
50
|
"Programming Language :: Python :: 3.9",
|
52
51
|
"Programming Language :: Python :: 3.10",
|
53
52
|
"Programming Language :: Python :: 3.11",
|
@@ -131,7 +131,22 @@ import jsii
|
|
131
131
|
import publication
|
132
132
|
import typing_extensions
|
133
133
|
|
134
|
-
|
134
|
+
import typeguard
|
135
|
+
from importlib.metadata import version as _metadata_package_version
|
136
|
+
TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
|
137
|
+
|
138
|
+
def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
|
139
|
+
if TYPEGUARD_MAJOR_VERSION <= 2:
|
140
|
+
return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
|
141
|
+
else:
|
142
|
+
if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
|
143
|
+
pass
|
144
|
+
else:
|
145
|
+
if TYPEGUARD_MAJOR_VERSION == 3:
|
146
|
+
typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
|
147
|
+
typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
|
148
|
+
else:
|
149
|
+
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
135
150
|
|
136
151
|
from ._jsii import *
|
137
152
|
|
@@ -0,0 +1,44 @@
|
|
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 cdk_preinstalled_amazon_linux_ec2._jsii
|
33
|
+
import constructs._jsii
|
34
|
+
import open_constructs_aws_cdk._jsii
|
35
|
+
|
36
|
+
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
37
|
+
"cdk-code-server", "0.0.11", __name__[0:-6], "cdk-code-server@0.0.11.jsii.tgz"
|
38
|
+
)
|
39
|
+
|
40
|
+
__all__ = [
|
41
|
+
"__jsii_assembly__",
|
42
|
+
]
|
43
|
+
|
44
|
+
publication.publish()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-code-server
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.11
|
4
4
|
Summary: CDK Construct for a VSCode Server development environment on EC2
|
5
5
|
Home-page: https://github.com/badmintoncryer/cdk-code-server.git
|
6
6
|
Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
|
@@ -10,23 +10,22 @@ Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Classifier: Programming Language :: JavaScript
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
17
16
|
Classifier: Typing :: Typed
|
18
17
|
Classifier: Development Status :: 5 - Production/Stable
|
19
18
|
Classifier: License :: OSI Approved
|
20
|
-
Requires-Python: ~=3.
|
19
|
+
Requires-Python: ~=3.9
|
21
20
|
Description-Content-Type: text/markdown
|
22
21
|
License-File: LICENSE
|
23
22
|
Requires-Dist: aws-cdk-lib<3.0.0,>=2.143.0
|
24
23
|
Requires-Dist: cdk-preinstalled-amazon-linux-ec2<0.0.11,>=0.0.10
|
25
24
|
Requires-Dist: constructs<11.0.0,>=10.0.5
|
26
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
25
|
+
Requires-Dist: jsii<2.0.0,>=1.112.0
|
27
26
|
Requires-Dist: open-constructs-aws-cdk==0.0.0
|
28
27
|
Requires-Dist: publication>=0.0.3
|
29
|
-
Requires-Dist: typeguard
|
28
|
+
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
30
29
|
|
31
30
|
# CDK VSCode Server Construct
|
32
31
|
|
@@ -6,7 +6,7 @@ setup.py
|
|
6
6
|
src/cdk_code-server/__init__.py
|
7
7
|
src/cdk_code-server/py.typed
|
8
8
|
src/cdk_code-server/_jsii/__init__.py
|
9
|
-
src/cdk_code-server/_jsii/cdk-code-server@0.0.
|
9
|
+
src/cdk_code-server/_jsii/cdk-code-server@0.0.11.jsii.tgz
|
10
10
|
src/cdk_code_server.egg-info/PKG-INFO
|
11
11
|
src/cdk_code_server.egg-info/SOURCES.txt
|
12
12
|
src/cdk_code_server.egg-info/dependency_links.txt
|
@@ -1,29 +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 cdk_preinstalled_amazon_linux_ec2._jsii
|
18
|
-
import constructs._jsii
|
19
|
-
import open_constructs_aws_cdk._jsii
|
20
|
-
|
21
|
-
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
22
|
-
"cdk-code-server", "0.0.10", __name__[0:-6], "cdk-code-server@0.0.10.jsii.tgz"
|
23
|
-
)
|
24
|
-
|
25
|
-
__all__ = [
|
26
|
-
"__jsii_assembly__",
|
27
|
-
]
|
28
|
-
|
29
|
-
publication.publish()
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/src/cdk_code_server.egg-info/dependency_links.txt
RENAMED
File without changes
|
{cdk_code_server-0.0.10 → cdk_code_server-0.0.11}/src/cdk_code_server.egg-info/top_level.txt
RENAMED
File without changes
|