Skip to content

Commit

Permalink
fix: Remove dependency on container-transform since it's included
Browse files Browse the repository at this point in the history
  • Loading branch information
Swanoo committed Jun 18, 2024
1 parent 10d48a9 commit dce6a98
Show file tree
Hide file tree
Showing 10 changed files with 661 additions and 11 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
.test-results/
build/
dist/
Pipfile.lock
1 change: 0 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ pytest-cov = "*"

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

[requires]
Expand Down
649 changes: 649 additions & 0 deletions Pipfile.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions kitipy.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ License: MIT
Requires-Dist: boto3-stubs[ecr]==1.26.62
Requires-Dist: boto3-stubs[ecs]==1.26.62
Requires-Dist: boto3-stubs[secretsmanager]==1.26.62
Requires-Dist: boto3==1.23.7
Requires-Dist: boto3==1.26.62
Requires-Dist: click==7.0.0
Requires-Dist: Jinja2==2.7.0
Requires-Dist: Jinja2==3.1.4
Requires-Dist: paramiko==2.6.0
Requires-Dist: PyYAML==5.1.0
Requires-Dist: requests==2.27.1
Expand Down
4 changes: 2 additions & 2 deletions kitipy.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
boto3-stubs[ecr]==1.26.62
boto3-stubs[ecs]==1.26.62
boto3-stubs[secretsmanager]==1.26.62
boto3==1.23.7
boto3==1.26.62
click==7.0.0
Jinja2==2.7.0
Jinja2==3.1.4
paramiko==2.6.0
PyYAML==5.1.0
requests==2.27.1
Expand Down
3 changes: 2 additions & 1 deletion kitipy/libs/container_transform/chronos.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

from copy import deepcopy
from functools import reduce
from collections import Mapping, defaultdict
from collections import defaultdict
from collections.abc import Mapping

from .schema import TransformationTypes, ARG_MAP
from .transformer import BaseTransformer
Expand Down
3 changes: 2 additions & 1 deletion kitipy/libs/container_transform/kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

from copy import deepcopy
from functools import reduce
from collections import Mapping, defaultdict
from collections import defaultdict
from collections.abc import Mapping

import yaml

Expand Down
3 changes: 2 additions & 1 deletion kitipy/libs/container_transform/marathon.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

from copy import deepcopy
from functools import reduce
from collections import Mapping, defaultdict
from collections import defaultdict
from collections.abc import Mapping

from .schema import TransformationTypes, ARG_MAP
from .transformer import BaseTransformer
Expand Down
2 changes: 1 addition & 1 deletion kitipy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def on_end():


def append_cmd_flags(cmd: str, **kwargs) -> str:
"""Build a command string by appending flags in \**kwargs.
"""Build a command string by appending flags in kwargs.
Args:
cmd (str): The base command to prefix with the given flags.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"boto3-stubs[secretsmanager]==1.26.62",
"boto3==1.26.62",
"click==7.0.0",
"Jinja2==2.7.0",
"Jinja2==3.1.4",
"paramiko==2.6.0",
"PyYAML==5.1.0",
"requests==2.27.1",
Expand Down

0 comments on commit dce6a98

Please sign in to comment.