Skip to content

Commit

Permalink
feat(deps): Bump singer-sdk from 0.38.0 to 0.39.0 (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Aug 5, 2024
1 parent 3fda7ef commit 0313c7b
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 164 deletions.
165 changes: 9 additions & 156 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ urls.repository = "https://github.com/edgarrmondragon/tap-planetscalepi"
python = ">=3.8"
importlib-resources = { version = "==6.4.*", python = "<3.9" }
fs-s3fs = { version = "~=1.1.1", optional = true }
singer-sdk = "~=0.38.0"
singer-sdk = "~=0.39.0"
requests = "~=2.32.0"
toolz = "~=0.12.1"

[tool.poetry.group.dev.dependencies]
mypy = "~=1.11.0"
pytest = ">=7.4.0"
requests-cache = ">=1.1.1,<1.3.0"
singer-sdk = { version = "~=0.38.0", extras = ["testing"] }
singer-sdk = { version = "~=0.39.0", extras = ["testing"] }
types-requests = "~=2.31.0.6"

[tool.poetry.extras]
Expand Down
5 changes: 4 additions & 1 deletion tap_planetscaleapi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
from singer_sdk.pagination import BasePageNumberPaginator
from singer_sdk.streams import RESTStream

if t.TYPE_CHECKING:
from singer_sdk.helpers.types import Context

_Auth = t.Callable[[requests.PreparedRequest], requests.PreparedRequest]


Expand Down Expand Up @@ -64,7 +67,7 @@ def get_new_paginator(self) -> BasePageNumberPaginator:

def get_url_params(
self,
context: dict | None, # noqa: ARG002
context: Context | None, # noqa: ARG002
next_page_token: t.Any | None, # noqa: ANN401
) -> dict[str, t.Any]:
"""Return a dictionary of values to be used in URL parameterization.
Expand Down
Loading

0 comments on commit 0313c7b

Please sign in to comment.