Skip to content

Commit dce6a98

Browse files
committed
fix: Remove dependency on container-transform since it's included
1 parent 10d48a9 commit dce6a98

File tree

10 files changed

+661
-11
lines changed

10 files changed

+661
-11
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
.test-results/
33
build/
44
dist/
5-
Pipfile.lock

Pipfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ pytest-cov = "*"
1111

1212
[packages]
1313
kitipy = {path = ".", editable = true}
14-
container-transform = {editable = true, git = "https://github.com/Swanoo/container-transform.git", ref = "main"}
1514
boto3-stubs = {extras = ["cloudfront", "ecr", "ecs", "secretsmanager"], version = "==1.26.62"}
1615

1716
[requires]

Pipfile.lock

Lines changed: 649 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kitipy.egg-info/PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ License: MIT
66
Requires-Dist: boto3-stubs[ecr]==1.26.62
77
Requires-Dist: boto3-stubs[ecs]==1.26.62
88
Requires-Dist: boto3-stubs[secretsmanager]==1.26.62
9-
Requires-Dist: boto3==1.23.7
9+
Requires-Dist: boto3==1.26.62
1010
Requires-Dist: click==7.0.0
11-
Requires-Dist: Jinja2==2.7.0
11+
Requires-Dist: Jinja2==3.1.4
1212
Requires-Dist: paramiko==2.6.0
1313
Requires-Dist: PyYAML==5.1.0
1414
Requires-Dist: requests==2.27.1

kitipy.egg-info/requires.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
boto3-stubs[ecr]==1.26.62
22
boto3-stubs[ecs]==1.26.62
33
boto3-stubs[secretsmanager]==1.26.62
4-
boto3==1.23.7
4+
boto3==1.26.62
55
click==7.0.0
6-
Jinja2==2.7.0
6+
Jinja2==3.1.4
77
paramiko==2.6.0
88
PyYAML==5.1.0
99
requests==2.27.1

kitipy/libs/container_transform/chronos.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
from copy import deepcopy
88
from functools import reduce
9-
from collections import Mapping, defaultdict
9+
from collections import defaultdict
10+
from collections.abc import Mapping
1011

1112
from .schema import TransformationTypes, ARG_MAP
1213
from .transformer import BaseTransformer

kitipy/libs/container_transform/kubernetes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
from copy import deepcopy
55
from functools import reduce
6-
from collections import Mapping, defaultdict
6+
from collections import defaultdict
7+
from collections.abc import Mapping
78

89
import yaml
910

kitipy/libs/container_transform/marathon.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
from copy import deepcopy
66
from functools import reduce
7-
from collections import Mapping, defaultdict
7+
from collections import defaultdict
8+
from collections.abc import Mapping
89

910
from .schema import TransformationTypes, ARG_MAP
1011
from .transformer import BaseTransformer

kitipy/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def on_end():
139139

140140

141141
def append_cmd_flags(cmd: str, **kwargs) -> str:
142-
"""Build a command string by appending flags in \**kwargs.
142+
"""Build a command string by appending flags in kwargs.
143143
144144
Args:
145145
cmd (str): The base command to prefix with the given flags.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"boto3-stubs[secretsmanager]==1.26.62",
1313
"boto3==1.26.62",
1414
"click==7.0.0",
15-
"Jinja2==2.7.0",
15+
"Jinja2==3.1.4",
1616
"paramiko==2.6.0",
1717
"PyYAML==5.1.0",
1818
"requests==2.27.1",

0 commit comments

Comments
 (0)