cloudsnorkel.cdk-github-runners 0.14.6__tar.gz → 0.14.8__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 cloudsnorkel.cdk-github-runners might be problematic. Click here for more details.
- {cloudsnorkel_cdk_github_runners-0.14.6/src/cloudsnorkel.cdk_github_runners.egg-info → cloudsnorkel_cdk_github_runners-0.14.8}/PKG-INFO +9 -4
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/README.md +6 -0
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/pyproject.toml +2 -2
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/setup.py +4 -5
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/src/cloudsnorkel/cdk_github_runners/__init__.py +6 -0
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/src/cloudsnorkel/cdk_github_runners/_jsii/__init__.py +2 -2
- cloudsnorkel_cdk_github_runners-0.14.8/src/cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.14.8.jsii.tgz +0 -0
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8/src/cloudsnorkel.cdk_github_runners.egg-info}/PKG-INFO +9 -4
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/src/cloudsnorkel.cdk_github_runners.egg-info/SOURCES.txt +1 -1
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/src/cloudsnorkel.cdk_github_runners.egg-info/requires.txt +1 -1
- cloudsnorkel_cdk_github_runners-0.14.6/src/cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.14.6.jsii.tgz +0 -0
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/LICENSE +0 -0
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/MANIFEST.in +0 -0
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/setup.cfg +0 -0
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/src/cloudsnorkel/cdk_github_runners/py.typed +0 -0
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/src/cloudsnorkel.cdk_github_runners.egg-info/dependency_links.txt +0 -0
- {cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/src/cloudsnorkel.cdk_github_runners.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudsnorkel.cdk-github-runners
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.8
|
|
4
4
|
Summary: CDK construct to create GitHub Actions self-hosted runners. Creates ephemeral runners on demand. Easy to deploy and highly customizable.
|
|
5
5
|
Home-page: https://github.com/CloudSnorkel/cdk-github-runners.git
|
|
6
6
|
Author: Amir Szekely<amir@cloudsnorkel.com>
|
|
@@ -10,19 +10,18 @@ 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 :: 4 - Beta
|
|
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.155.0
|
|
24
23
|
Requires-Dist: constructs<11.0.0,>=10.0.5
|
|
25
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.111.0
|
|
26
25
|
Requires-Dist: publication>=0.0.3
|
|
27
26
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
28
27
|
|
|
@@ -351,6 +350,12 @@ new GitHubRunners(this, 'runners', {
|
|
|
351
350
|
});
|
|
352
351
|
```
|
|
353
352
|
|
|
353
|
+
## Examples
|
|
354
|
+
|
|
355
|
+
Beyond the code snippets above, the fullest example available is the [integration test](test/default.integ.ts).
|
|
356
|
+
|
|
357
|
+
If you have more to share, please open a PR adding them to the `examples` folder.
|
|
358
|
+
|
|
354
359
|
## Architecture
|
|
355
360
|
|
|
356
361
|

|
|
@@ -323,6 +323,12 @@ new GitHubRunners(this, 'runners', {
|
|
|
323
323
|
});
|
|
324
324
|
```
|
|
325
325
|
|
|
326
|
+
## Examples
|
|
327
|
+
|
|
328
|
+
Beyond the code snippets above, the fullest example available is the [integration test](test/default.integ.ts).
|
|
329
|
+
|
|
330
|
+
If you have more to share, please open a PR adding them to the `examples` folder.
|
|
331
|
+
|
|
326
332
|
## Architecture
|
|
327
333
|
|
|
328
334
|

|
{cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/pyproject.toml
RENAMED
|
@@ -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": "cloudsnorkel.cdk-github-runners",
|
|
8
|
-
"version": "0.14.
|
|
8
|
+
"version": "0.14.8",
|
|
9
9
|
"description": "CDK construct to create GitHub Actions self-hosted runners. Creates ephemeral runners on demand. Easy to deploy and highly customizable.",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/CloudSnorkel/cdk-github-runners.git",
|
|
@@ -26,17 +26,17 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"cloudsnorkel.cdk_github_runners._jsii": [
|
|
29
|
-
"cdk-github-runners@0.14.
|
|
29
|
+
"cdk-github-runners@0.14.8.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"cloudsnorkel.cdk_github_runners": [
|
|
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.155.0, <3.0.0",
|
|
38
38
|
"constructs>=10.0.5, <11.0.0",
|
|
39
|
-
"jsii>=1.
|
|
39
|
+
"jsii>=1.111.0, <2.0.0",
|
|
40
40
|
"publication>=0.0.3",
|
|
41
41
|
"typeguard>=2.13.3,<4.3.0"
|
|
42
42
|
],
|
|
@@ -45,7 +45,6 @@ kwargs = json.loads(
|
|
|
45
45
|
"Operating System :: OS Independent",
|
|
46
46
|
"Programming Language :: JavaScript",
|
|
47
47
|
"Programming Language :: Python :: 3 :: Only",
|
|
48
|
-
"Programming Language :: Python :: 3.8",
|
|
49
48
|
"Programming Language :: Python :: 3.9",
|
|
50
49
|
"Programming Language :: Python :: 3.10",
|
|
51
50
|
"Programming Language :: Python :: 3.11",
|
|
@@ -324,6 +324,12 @@ new GitHubRunners(this, 'runners', {
|
|
|
324
324
|
});
|
|
325
325
|
```
|
|
326
326
|
|
|
327
|
+
## Examples
|
|
328
|
+
|
|
329
|
+
Beyond the code snippets above, the fullest example available is the [integration test](test/default.integ.ts).
|
|
330
|
+
|
|
331
|
+
If you have more to share, please open a PR adding them to the `examples` folder.
|
|
332
|
+
|
|
327
333
|
## Architecture
|
|
328
334
|
|
|
329
335
|

|
|
@@ -33,9 +33,9 @@ import constructs._jsii
|
|
|
33
33
|
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
35
35
|
"@cloudsnorkel/cdk-github-runners",
|
|
36
|
-
"0.14.
|
|
36
|
+
"0.14.8",
|
|
37
37
|
__name__[0:-6],
|
|
38
|
-
"cdk-github-runners@0.14.
|
|
38
|
+
"cdk-github-runners@0.14.8.jsii.tgz",
|
|
39
39
|
)
|
|
40
40
|
|
|
41
41
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudsnorkel.cdk-github-runners
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.8
|
|
4
4
|
Summary: CDK construct to create GitHub Actions self-hosted runners. Creates ephemeral runners on demand. Easy to deploy and highly customizable.
|
|
5
5
|
Home-page: https://github.com/CloudSnorkel/cdk-github-runners.git
|
|
6
6
|
Author: Amir Szekely<amir@cloudsnorkel.com>
|
|
@@ -10,19 +10,18 @@ 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 :: 4 - Beta
|
|
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.155.0
|
|
24
23
|
Requires-Dist: constructs<11.0.0,>=10.0.5
|
|
25
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.111.0
|
|
26
25
|
Requires-Dist: publication>=0.0.3
|
|
27
26
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
28
27
|
|
|
@@ -351,6 +350,12 @@ new GitHubRunners(this, 'runners', {
|
|
|
351
350
|
});
|
|
352
351
|
```
|
|
353
352
|
|
|
353
|
+
## Examples
|
|
354
|
+
|
|
355
|
+
Beyond the code snippets above, the fullest example available is the [integration test](test/default.integ.ts).
|
|
356
|
+
|
|
357
|
+
If you have more to share, please open a PR adding them to the `examples` folder.
|
|
358
|
+
|
|
354
359
|
## Architecture
|
|
355
360
|
|
|
356
361
|

|
|
@@ -11,4 +11,4 @@ src/cloudsnorkel.cdk_github_runners.egg-info/top_level.txt
|
|
|
11
11
|
src/cloudsnorkel/cdk_github_runners/__init__.py
|
|
12
12
|
src/cloudsnorkel/cdk_github_runners/py.typed
|
|
13
13
|
src/cloudsnorkel/cdk_github_runners/_jsii/__init__.py
|
|
14
|
-
src/cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.14.
|
|
14
|
+
src/cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.14.8.jsii.tgz
|
|
Binary file
|
|
File without changes
|
{cloudsnorkel_cdk_github_runners-0.14.6 → cloudsnorkel_cdk_github_runners-0.14.8}/MANIFEST.in
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|