diff --git a/poetry.lock b/poetry.lock index 73f6204..61b4c1f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1928,13 +1928,13 @@ files = [ [[package]] name = "singer-sdk" -version = "0.43.1" +version = "0.44.0" description = "A framework for building Singer taps" optional = false python-versions = ">=3.9" files = [ - {file = "singer_sdk-0.43.1-py3-none-any.whl", hash = "sha256:bd03da661317907b26db6806f1adb2a365c6183889f981602a405f8f784aa1ba"}, - {file = "singer_sdk-0.43.1.tar.gz", hash = "sha256:4941208e95bde7865943b06677536aee316a755b5b3b7af0a6ef7717454e8645"}, + {file = "singer_sdk-0.44.0-py3-none-any.whl", hash = "sha256:15d896edae6e16c2614e5211f52546a63ea58cd88578e61efc259dfefc032972"}, + {file = "singer_sdk-0.44.0.tar.gz", hash = "sha256:050ab063188a0d6f6989456d0d3d9c52cb6da706950ec6f8d8ad1a60ecae7a1b"}, ] [package.dependencies] @@ -1950,7 +1950,7 @@ joblib = ">=1.3.0" jsonpath-ng = ">=1.5.3" jsonschema = ">=4.16.0" packaging = ">=23.1" -pytest = {version = ">=7.2.1", optional = true, markers = "extra == \"docs\" or extra == \"testing\""} +pytest = {version = ">=7.2.1", optional = true, markers = "extra == \"testing\""} python-dotenv = ">=0.20" PyYAML = ">=6.0" referencing = ">=0.30.0" @@ -1960,6 +1960,10 @@ simpleeval = ">=0.9.13,<1.0.1 || >1.0.1" simplejson = ">=3.17.6" sqlalchemy = ">=1.4,<3.0" typing-extensions = ">=4.5.0" +urllib3 = [ + {version = "<2", markers = "python_version < \"3.10\""}, + {version = "*", markers = "python_version >= \"3.10\""}, +] [package.extras] docs = ["furo (>=2024.5.6)", "myst-parser (>=3)", "pytest (>=7.2.1)", "sphinx (>=7)", "sphinx-copybutton (>=0.5.2)", "sphinx-inline-tabs (>=2023.4.21)", "sphinx-notfound-page (>=1.0.0)", "sphinx-reredirects (>=0.1.5)"] @@ -2210,4 +2214,4 @@ s3 = ["fs-s3fs"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<3.13" -content-hash = "d439335693d6ff596a356c86cd81c048b553eb07e8dd578d50498893faa3351f" +content-hash = "437c95a493eccbc6d1891366b4079e1e819c5c223543d83284b3174e4e85c48d" diff --git a/pyproject.toml b/pyproject.toml index edee77a..e169114 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" [tool.poetry.dependencies] python = ">=3.9,<3.13" -singer-sdk = { version="~=0.43.1" } +singer-sdk = { version="~=0.44.0" } fs-s3fs = { version = "~=1.1.1", optional = true } redshift-connector = "^2.1.5" boto3 = "^1.36.2" @@ -22,7 +22,7 @@ simplejson = "^3.19.3" [tool.poetry.dev-dependencies] pytest = ">=7.4.0" -singer-sdk = { version="~=0.43.1", extras = ["testing"] } +singer-sdk = { version="~=0.44.0", extras = ["testing"] } [tool.poetry.extras] s3 = ["fs-s3fs"]