tap-belvo 0.1.0__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tap-belvo might be problematic. Click here for more details.
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.github/workflows/dynamic-publish.yaml +1 -1
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.github/workflows/test.yml +7 -6
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.pre-commit-config.yaml +3 -3
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/PKG-INFO +4 -3
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/README.md +1 -1
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/pyproject.toml +9 -4
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tox.ini +1 -1
- tap_belvo-0.2.0/uv.lock +1117 -0
- tap_belvo-0.1.0/uv.lock +0 -1110
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.copier-answers.yml +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.github/CODEOWNERS +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.github/renovate.json5 +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.gitignore +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.secrets/.gitignore +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/LICENSE +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/meltano.yml +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/output/.gitignore +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/plugins/loaders/target-duckdb--jwills.lock +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/plugins/loaders/target-jsonl--andyh1203.lock +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/__init__.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/__main__.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/client.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/openapi/BelvoOpenFinanceApiSpec.json +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/openapi/__init__.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/__init__.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/banking.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/core.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/enrichment.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/fiscal.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/tap.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tests/__init__.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tests/conftest.py +0 -0
- {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tests/test_core.py +0 -0
|
@@ -30,11 +30,11 @@ concurrency:
|
|
|
30
30
|
env:
|
|
31
31
|
FORCE_COLOR: 1
|
|
32
32
|
# renovate: datasource=pypi depName=uv
|
|
33
|
-
UV_VERSION: 0.
|
|
33
|
+
UV_VERSION: 0.7.8
|
|
34
34
|
# renovate: datasource=pypi depName=tox
|
|
35
|
-
TOX_VERSION: 4.
|
|
35
|
+
TOX_VERSION: 4.26.0
|
|
36
36
|
# renovate: datasource=pypi depName=tox-uv
|
|
37
|
-
TOX_UV_VERSION: 1.
|
|
37
|
+
TOX_UV_VERSION: 1.26.0
|
|
38
38
|
|
|
39
39
|
jobs:
|
|
40
40
|
tests:
|
|
@@ -48,18 +48,19 @@ jobs:
|
|
|
48
48
|
- "3.11"
|
|
49
49
|
- "3.12"
|
|
50
50
|
- "3.13"
|
|
51
|
+
- "3.14"
|
|
51
52
|
include:
|
|
52
53
|
- { environment: "dependencies", python-version: "3.x" }
|
|
53
54
|
- { environment: "typing", python-version: "3.x" }
|
|
54
55
|
|
|
55
56
|
steps:
|
|
56
57
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
57
|
-
- uses: actions/setup-python@
|
|
58
|
+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
|
58
59
|
id: setup-python
|
|
59
60
|
with:
|
|
60
61
|
python-version: ${{ matrix.python-version }}
|
|
61
62
|
allow-prereleases: true
|
|
62
|
-
- uses: astral-sh/setup-uv@
|
|
63
|
+
- uses: astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb # v6.1.0
|
|
63
64
|
with:
|
|
64
65
|
version: ${{ env.UV_VERSION }}
|
|
65
66
|
- name: Run
|
|
@@ -81,7 +82,7 @@ jobs:
|
|
|
81
82
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
82
83
|
|
|
83
84
|
- name: Set up Python
|
|
84
|
-
uses: actions/setup-python@
|
|
85
|
+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
|
85
86
|
with:
|
|
86
87
|
python-version: "3.x"
|
|
87
88
|
cache: pip
|
|
@@ -19,12 +19,12 @@ repos:
|
|
|
19
19
|
- id: trailing-whitespace
|
|
20
20
|
|
|
21
21
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
|
22
|
-
rev: "v2.
|
|
22
|
+
rev: "v2.6.0"
|
|
23
23
|
hooks:
|
|
24
24
|
- id: pyproject-fmt
|
|
25
25
|
|
|
26
26
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
27
|
-
rev: "v0.11.
|
|
27
|
+
rev: "v0.11.11"
|
|
28
28
|
hooks:
|
|
29
29
|
- id: ruff
|
|
30
30
|
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
|
|
@@ -36,7 +36,7 @@ repos:
|
|
|
36
36
|
- id: validate_manifest
|
|
37
37
|
|
|
38
38
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
39
|
-
rev: "0.
|
|
39
|
+
rev: "0.7.8"
|
|
40
40
|
hooks:
|
|
41
41
|
- id: uv-lock
|
|
42
42
|
- id: uv-sync
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tap-belvo
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Singer tap for Belvo, built with the Meltano SDK for Singer Taps.
|
|
5
5
|
Project-URL: Documentation, https://github.com/edgarrmondragon/tap-belvo#readme
|
|
6
6
|
Project-URL: Homepage, https://github.com/edgarrmondragon/tap-belvo
|
|
@@ -16,13 +16,14 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
20
|
Requires-Python: >=3.9
|
|
20
21
|
Requires-Dist: requests-cache==1.*
|
|
21
22
|
Requires-Dist: requests~=2.32.3
|
|
22
|
-
Requires-Dist: singer-sdk~=0.
|
|
23
|
+
Requires-Dist: singer-sdk~=0.46.4
|
|
23
24
|
Description-Content-Type: text/markdown
|
|
24
25
|
|
|
25
|
-
#
|
|
26
|
+
# tap-belvo
|
|
26
27
|
|
|
27
28
|
Singer tap for Belvo.
|
|
28
29
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
build-backend = "hatchling.build"
|
|
3
3
|
requires = [
|
|
4
|
-
"hatch-vcs==0.
|
|
4
|
+
"hatch-vcs==0.5",
|
|
5
5
|
"hatchling==1.27",
|
|
6
6
|
]
|
|
7
7
|
|
|
@@ -25,6 +25,7 @@ classifiers = [
|
|
|
25
25
|
"Programming Language :: Python :: 3.11",
|
|
26
26
|
"Programming Language :: Python :: 3.12",
|
|
27
27
|
"Programming Language :: Python :: 3.13",
|
|
28
|
+
"Programming Language :: Python :: 3.14",
|
|
28
29
|
]
|
|
29
30
|
dynamic = [
|
|
30
31
|
"version",
|
|
@@ -32,7 +33,7 @@ dynamic = [
|
|
|
32
33
|
dependencies = [
|
|
33
34
|
"requests~=2.32.3",
|
|
34
35
|
"requests-cache==1.*",
|
|
35
|
-
"singer-sdk~=0.
|
|
36
|
+
"singer-sdk~=0.46.4",
|
|
36
37
|
]
|
|
37
38
|
urls.Documentation = "https://github.com/edgarrmondragon/tap-belvo#readme"
|
|
38
39
|
urls.Homepage = "https://github.com/edgarrmondragon/tap-belvo"
|
|
@@ -81,11 +82,15 @@ lint.isort.required-imports = [ "from __future__ import annotations" ]
|
|
|
81
82
|
lint.pydocstyle.convention = "google"
|
|
82
83
|
|
|
83
84
|
[tool.pyproject-fmt]
|
|
84
|
-
max_supported_python = "3.
|
|
85
|
+
max_supported_python = "3.14"
|
|
85
86
|
|
|
86
87
|
[tool.pytest.ini_options]
|
|
87
88
|
addopts = [ "-vvv" ]
|
|
88
|
-
filterwarnings = [
|
|
89
|
+
filterwarnings = [
|
|
90
|
+
"error",
|
|
91
|
+
"default:'asyncio.iscoroutinefunction' is deprecated:DeprecationWarning",
|
|
92
|
+
"default:'_UnionGenericAlias' is deprecated and slated for removal in Python 3.17:DeprecationWarning",
|
|
93
|
+
]
|
|
89
94
|
|
|
90
95
|
[tool.mypy]
|
|
91
96
|
enable_error_code = [
|