From 3242fd79c21cffb41507a64472d8925fff934199 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 17:10:44 +0000 Subject: [PATCH] feat(deps): Bump singer-sdk from 0.32.0 to 0.33.0 (#197) --- .github/dependabot.yml | 1 + poetry.lock | 38 +++++++++++++++++++++++++++++++++----- pyproject.toml | 9 +++++---- 3 files changed, 39 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 69cff29..fbcca9f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,6 +15,7 @@ updates: commit-message: prefix: "feat(deps): " prefix-development: "chore(deps-dev): " + versioning-strategy: increase-if-necessary - package-ecosystem: pip directory: "/.github/workflows" schedule: diff --git a/poetry.lock b/poetry.lock index 648791d..2f55ee3 100644 --- a/poetry.lock +++ b/poetry.lock @@ -701,6 +701,20 @@ tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] +[[package]] +name = "pytest-durations" +version = "1.2.0" +description = "Pytest plugin reporting fixtures and test functions execution time." +optional = false +python-versions = ">=3.6.2" +files = [ + {file = "pytest-durations-1.2.0.tar.gz", hash = "sha256:75793f7c2c393a947de4a92cc205e8dcb3d7fcde492628926cca97eb8e87077d"}, + {file = "pytest_durations-1.2.0-py3-none-any.whl", hash = "sha256:210c649d989fdf8e864b7f614966ca2c8be5b58a5224d60089a43618c146d7fb"}, +] + +[package.dependencies] +pytest = ">=4.6" + [[package]] name = "python-dateutil" version = "2.8.2" @@ -998,6 +1012,17 @@ docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] +[[package]] +name = "simpleeval" +version = "0.9.13" +description = "A simple, safe single expression evaluator library." +optional = false +python-versions = "*" +files = [ + {file = "simpleeval-0.9.13-py2.py3-none-any.whl", hash = "sha256:22a2701a5006e4188d125d34accf2405c2c37c93f6b346f2484b6422415ae54a"}, + {file = "simpleeval-0.9.13.tar.gz", hash = "sha256:4a30f9cc01825fe4c719c785e3762623e350c4840d5e6855c2a8496baaa65fac"}, +] + [[package]] name = "simplejson" version = "3.19.1" @@ -1094,13 +1119,13 @@ files = [ [[package]] name = "singer-sdk" -version = "0.32.0" +version = "0.33.0" description = "A framework for building Singer taps" optional = false python-versions = ">=3.7.1,<4" files = [ - {file = "singer_sdk-0.32.0-py3-none-any.whl", hash = "sha256:19b56e67bc9e6c7410e1830711894ae25d54609a72d06bef569d0c5a5a1b2b54"}, - {file = "singer_sdk-0.32.0.tar.gz", hash = "sha256:af666788faa027869fa045859bd070b3d0df487c89fda18e7b683e8bb94b4ced"}, + {file = "singer_sdk-0.33.0-py3-none-any.whl", hash = "sha256:ed0f9c67ca79964a8f517e7360197d4ddb342f341448fb3b310214ce91e48ac5"}, + {file = "singer_sdk-0.33.0.tar.gz", hash = "sha256:e2b43496b324ca9214b731c8d2c2711d9100b6238d20b1e3187c8ae3de1b0c9d"}, ] [package.dependencies] @@ -1117,10 +1142,13 @@ memoization = ">=0.3.2,<0.5.0" packaging = ">=23.1" pendulum = ">=2.1.0" PyJWT = ">=2.4,<3.0" +pytest = {version = ">=7.2.1", optional = true, markers = "extra == \"testing\""} +pytest-durations = {version = ">=1.2.0", optional = true, markers = "extra == \"testing\""} python-dotenv = ">=0.20,<0.22" pytz = ">=2022.2.1,<2024.0.0" PyYAML = ">=6.0" requests = ">=2.25.1" +simpleeval = ">=0.9.13,<0.10.0" simplejson = ">=3.17.6" sqlalchemy = ">=1.4,<3.0" typing-extensions = ">=4.2.0" @@ -1306,5 +1334,5 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" -python-versions = "<3.12,>=3.8" -content-hash = "689fcaadcb78da0719d21254ac1dda62484e31a19abea80603b9005a39bb81c5" +python-versions = ">=3.8,<4" +content-hash = "77cb0038efd51f4e6f3f44d63309e4fa8d3e0335bc01bde7a43b3a7c9225cdf1" diff --git a/pyproject.toml b/pyproject.toml index 3965726..2900c10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,15 +19,16 @@ documentation = "https://github.com/edgarrmondragon/tap-jotform/#readme" keywords = ["ELT", "Jotform"] [tool.poetry.dependencies] +python = ">=3.8,<4" colorama = "==0.4.*" -importlib-metadata = {version = "<5.0.0", python = "<3.8"} -python = "<3.12,>=3.8" +importlib-metadata = {version = "==6.*", python = "<3.8"} requests-cache = "==1.1.*" -singer-sdk = ">=0.31,<0.33" +singer-sdk = "==0.33.*" structlog = "==23.1.*" [tool.poetry.group.dev.dependencies] -pytest = "^7.2.1" +pytest = "==7.*" +singer-sdk = { version = "==0.33.*", extras = ["testing"] } [tool.poetry.scripts] # CLI declaration