From 29c6bf35a6cf4e82b9409ab9b63d8c7039c801e8 Mon Sep 17 00:00:00 2001 From: "Edgar R. M" Date: Mon, 17 Jul 2023 16:18:22 -0600 Subject: [PATCH 1/3] chore: Add stale bot config (#1846) --- .github/stale.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..6263a6249 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,7 @@ +# This config file extends the shared Meltano GitHub org stale bot config: +# https://github.com/meltano/.github/blob/main/.github/stale.yml + +_extends: .github + +# In most cases, this file should not be updated. +# Updates to the stale bot config should be shared by all Meltano GitHub repositories. From 041080881520a03f52c49e28e2cad589c8faaeb4 Mon Sep 17 00:00:00 2001 From: "Edgar R. M" Date: Tue, 18 Jul 2023 11:19:06 -0600 Subject: [PATCH 2/3] docs: Fix stale `pip_url` example that uses shell script workaround for editable installation (#1852) --- docs/cli_commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cli_commands.md b/docs/cli_commands.md index 97bf0df9a..d12d245f8 100644 --- a/docs/cli_commands.md +++ b/docs/cli_commands.md @@ -161,7 +161,7 @@ plugins: extractors: - name: my-tap namespace: my_tap - executable: ./my-tap.sh + executable: -e . capabilities: - state - catalog From 4c5331353b5a553b5083358d6df5085e455cc800 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 18 Jul 2023 11:40:06 -0600 Subject: [PATCH 3/3] chore: pre-commit autoupdate (#1851) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Edgar Ramírez Mondragón --- .pre-commit-config.yaml | 4 ++-- pyproject.toml | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f3cde0b46..3c8a18afe 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,14 +36,14 @@ repos: )$ - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.23.2 + rev: 0.23.3 hooks: - id: check-dependabot - id: check-github-workflows - id: check-readthedocs - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.0.277 + rev: v0.0.278 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix, --show-fixes] diff --git a/pyproject.toml b/pyproject.toml index d4a73d704..bac2a0f7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -220,6 +220,8 @@ pytest11 = { callable = "singer_sdk:testing.pytest_plugin", extras = ["testing"] [tool.ruff] exclude = [ "cookiecutter/*", + "singer_sdk/helpers/_simpleeval.py", + "tests/core/test_simpleeval.py", ] ignore = [ "ANN101", # Missing type annotation for `self` in method