Skip to content

Commit

Permalink
fix: Use the jwt extra (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jul 9, 2024
1 parent 736c9d6 commit 2594224
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,5 @@ def lint(
session.run("git", "add", ".", external=True)
session.run("hatch", "run", "test:dependencies", external=True)
session.run("hatch", "run", "typing:check", external=True)
session.run("cat", "pyproject.toml", external=True)
session.run("pre-commit", "run", "--all", external=True)
4 changes: 4 additions & 0 deletions src/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ dependencies = [
[%- if tap_stream_type == 'GraphQL' or tap_auth_method == 'Basic Auth' %]
"requests<3,>=2",
[%- endif %]
[%- if tap_auth_method == 'JWT' %]
"singer-sdk[jwt]~=0.38.0",
[%- else %]
"singer-sdk~=0.38.0",
[%- endif %]
]
optional-dependencies.dev = [
"[[ tap_package_distribution_name ]][testing,typing]",
Expand Down

0 comments on commit 2594224

Please sign in to comment.