Skip to content

Commit

Permalink
Merge branch 'main' into edgarrmondragon/feat/jsonschema-to-sql
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Oct 30, 2024
2 parents df56b5d + ce6941f commit b67b565
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ repos:
- id: check-readthedocs

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.0
rev: v0.7.1
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
Expand Down
22 changes: 4 additions & 18 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ requests = ">=2.25.1"
setuptools = "<=70.3.0"
simpleeval = [
{ version = ">=0.9.13,<1", python = "<3.9" },
{ version = ">=0.9.13", python = ">=3.9" },
{ version = ">=0.9.13,!=1.0.1", python = ">=3.9" },
]
simplejson = ">=3.17.6"
sqlalchemy = ">=1.4,<3.0"
Expand Down
2 changes: 1 addition & 1 deletion singer_sdk/mapper_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def map_activate_version_message(

def map_batch_message( # noqa: PLR6301
self,
message_dict: dict, # noqa: ARG002
message_dict: dict,
) -> t.Iterable[singer.Message]:
"""Map a batch message to zero or more new messages.
Expand Down
6 changes: 3 additions & 3 deletions singer_sdk/testing/templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,9 @@ def non_null_attribute_values(self) -> list[t.Any]:
@classmethod
def evaluate(
cls,
stream: Stream, # noqa: ARG003
property_name: str, # noqa: ARG003
property_schema: dict, # noqa: ARG003
stream: Stream,
property_name: str,
property_schema: dict,
) -> bool:
"""Determine if this attribute test is applicable to the given property.
Expand Down

0 comments on commit b67b565

Please sign in to comment.