diff --git a/poetry.lock b/poetry.lock index 3982f38eb..b55cef9ce 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1946,23 +1946,6 @@ brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotl secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] -[[package]] -name = "urllib3" -version = "2.0.7" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.7" -files = [ - {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, - {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - [[package]] name = "virtualenv" version = "20.25.1" @@ -2037,9 +2020,9 @@ docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.link testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [extras] -s3 = ["boto3"] +s3 = ["boto3", "urllib3"] [metadata] lock-version = "2.0" python-versions = ">=3.8.1,<3.12" -content-hash = "9240d68b5a1d01e419e9d4dc938a97c0d8e068e6a4e2c9ae590225cd74c2c9eb" +content-hash = "b685ce84d9ce78874f3631806faf41441f00aefb1e82c8d5bca4754b9379185d" diff --git a/pyproject.toml b/pyproject.toml index c807f384e..8c9c579b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ Jinja2 = "^3.0.3" hrflow = { git = "https://github.com/Riminder/python-hrflow-api", rev = "79727b5" } requests = "^2.27.1" boto3 = {version = "^1.24.66", optional = true} +urllib3 = {version = "<2", optional = true} simple-salesforce = "^1.12.4" typing-extensions = "^4.7.1" beautifulsoup4 = "4.10.0" @@ -40,7 +41,7 @@ python-semantic-release = "^8.0.8" pillow = "<10" [tool.poetry.extras] -s3 = ["boto3"] +s3 = ["boto3", "urllib3"] [tool.black] line-length = 88