Skip to content

Commit

Permalink
WIP: Bump singer-sdk to 0.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jul 10, 2024
1 parent b5a4665 commit 7c6467e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ from singer_sdk.authenticators import BearerTokenAuthenticator
from [[ tap_package_import_name ]].auth import [[ authenticator ]]
[%- endif %]

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


class [[ base_stream ]]([[ tap_stream_type ]]Stream[t.Any]):
"""[[ tap_source_name ]] stream class."""
Expand Down Expand Up @@ -99,7 +102,7 @@ class [[ base_stream ]]([[ tap_stream_type ]]Stream[t.Any]):

def get_url_params(
self,
context: dict[str, t.Any] | None, # noqa: ARG002
context: Context[str, t.Any] | None, # noqa: ARG002
next_page_token: t.Any | None, # noqa: ARG002, ANN401
) -> dict[str, t.Any]:
"""Get URL query parameters.
Expand Down
4 changes: 2 additions & 2 deletions src/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ dependencies = [
"requests<3,>=2",
[%- endif %]
[%- if tap_auth_method == 'JWT' %]
"singer-sdk[jwt]~=0.38.0",
"singer-sdk[jwt]~=0.39.0",
[%- else %]
"singer-sdk~=0.38.0",
"singer-sdk~=0.39.0",
[%- endif %]
]
optional-dependencies.dev = [
Expand Down

0 comments on commit 7c6467e

Please sign in to comment.