diff --git a/poetry.lock b/poetry.lock index e324b3d8..34fea180 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1021,8 +1021,8 @@ files = [ google-auth = ">=2.14.1,<3.0.0" googleapis-common-protos = ">=1.63.2,<2.0.0" proto-plus = [ - {version = ">=1.22.3,<2.0.0"}, {version = ">=1.25.0,<2.0.0", markers = "python_version >= \"3.13\""}, + {version = ">=1.22.3,<2.0.0", markers = "python_version < \"3.13\""}, ] protobuf = ">=4.25.8,<8.0.0" requests = ">=2.20.0,<3.0.0" @@ -2149,8 +2149,8 @@ files = [ astroid = ">=4.0.2,<=4.1.dev0" colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} dill = [ - {version = ">=0.2", markers = "python_version < \"3.11\""}, {version = ">=0.3.7", markers = "python_version >= \"3.12\""}, + {version = ">=0.2", markers = "python_version < \"3.11\""}, {version = ">=0.3.6", markers = "python_version == \"3.11\""}, ] isort = ">=5,<5.13 || >5.13,<9" @@ -2220,6 +2220,19 @@ files = [ [package.extras] diagrams = ["jinja2", "railroad-diagrams"] +[[package]] +name = "pysocks" +version = "1.7.1" +description = "A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +groups = ["main"] +files = [ + {file = "PySocks-1.7.1-py27-none-any.whl", hash = "sha256:08e69f092cc6dbe92a0fdd16eeb9b9ffbc13cadfe5ca4c7bd92ffb078b293299"}, + {file = "PySocks-1.7.1-py3-none-any.whl", hash = "sha256:2725bd0a9925919b9b51739eea5f9e2bae91e83288108a9ad338b2e3a4435ee5"}, + {file = "PySocks-1.7.1.tar.gz", hash = "sha256:3f8804571ebe159c380ac6de37643bb4685970655d3bba243530d6558b799aa0"}, +] + [[package]] name = "pytest" version = "9.0.3" @@ -2865,6 +2878,7 @@ files = [ certifi = ">=2023.5.7" charset_normalizer = ">=2,<4" idna = ">=2.5,<4" +PySocks = {version = ">=1.5.6,<1.5.7 || >1.5.7", optional = true, markers = "extra == \"socks\""} urllib3 = ">=1.26,<3" [package.extras] @@ -3400,4 +3414,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "ruff", "sph [metadata] lock-version = "2.1" python-versions = ">=3.10, <3.15" -content-hash = "8368e5f05aebed34ddc84fe3a16944e8dd068dbac785ff9cfd402d204a68347f" +content-hash = "977346b43825a9cfe162662f246b05d2d0ed97e58cd31e95591a3346337f6925" diff --git a/pyproject.toml b/pyproject.toml index c7a7afe1..dd305388 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ botocore="^1.29.145" kapitan = "0.35.1" click = "8.4.1" gitpython = "3.1.50" -requests = "2.34.2" +requests = { version = "2.34.2", extras = ["socks"] } url-normalize = "3.0.0" python-dotenv = "1.2.2" pyxdg = "0.28"