Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Apr 15, 2024
1 parent 7ad5e3f commit 656bb84
Show file tree
Hide file tree
Showing 10 changed files with 196 additions and 178 deletions.
1 change: 1 addition & 0 deletions awscliv2/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Main Python module entrypoint.
"""

from awscliv2.main import main_cli

if __name__ == "__main__":
Expand Down
1 change: 1 addition & 0 deletions awscliv2/api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Runner for all AWS CLI v2 commands.
"""

import json
import subprocess
import sys
Expand Down
1 change: 1 addition & 0 deletions awscliv2/cli_parser.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Parse CLI arguments.
"""

import argparse
import contextlib
import sys
Expand Down
1 change: 1 addition & 0 deletions awscliv2/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Constants in use accross the project.
"""

IMAGE_NAME = "amazon/aws-cli"
DOCKER_PATH = "docker"
PACKAGE_NAME = "awscliv2"
Expand Down
1 change: 1 addition & 0 deletions awscliv2/installers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
AWS CLI v2 installers.
"""

import os
import platform
import shutil
Expand Down
1 change: 1 addition & 0 deletions awscliv2/interactive_process.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Wrapper for subrocess.Popen with interactive input support.
"""

import select
import subprocess
import sys
Expand Down
1 change: 1 addition & 0 deletions awscliv2/logger.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Logging utils.
"""

import logging

from awscliv2.constants import LOGGER_NAME
Expand Down
1 change: 1 addition & 0 deletions awscliv2/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Main entrypoint for CLI.
"""

import sys
from typing import Sequence

Expand Down
364 changes: 187 additions & 177 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.black]
line-length = 100
include = "(awscliv2|tests)/.*\\.pyi?$"
target-version = ["py37", "py38", "py39", "py310"]
target-version = ["py37", "py38", "py39", "py310", "py311", "py312"]

[tool.isort]
profile = "black"
Expand Down

0 comments on commit 656bb84

Please sign in to comment.