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.

Files changed (33) hide show
  1. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.github/workflows/dynamic-publish.yaml +1 -1
  2. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.github/workflows/test.yml +7 -6
  3. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.pre-commit-config.yaml +3 -3
  4. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/PKG-INFO +4 -3
  5. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/README.md +1 -1
  6. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/pyproject.toml +9 -4
  7. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tox.ini +1 -1
  8. tap_belvo-0.2.0/uv.lock +1117 -0
  9. tap_belvo-0.1.0/uv.lock +0 -1110
  10. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.copier-answers.yml +0 -0
  11. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.github/CODEOWNERS +0 -0
  12. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.github/renovate.json5 +0 -0
  13. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.gitignore +0 -0
  14. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/.secrets/.gitignore +0 -0
  15. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/LICENSE +0 -0
  16. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/meltano.yml +0 -0
  17. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/output/.gitignore +0 -0
  18. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/plugins/loaders/target-duckdb--jwills.lock +0 -0
  19. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/plugins/loaders/target-jsonl--andyh1203.lock +0 -0
  20. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/__init__.py +0 -0
  21. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/__main__.py +0 -0
  22. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/client.py +0 -0
  23. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/openapi/BelvoOpenFinanceApiSpec.json +0 -0
  24. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/openapi/__init__.py +0 -0
  25. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/__init__.py +0 -0
  26. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/banking.py +0 -0
  27. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/core.py +0 -0
  28. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/enrichment.py +0 -0
  29. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/streams/fiscal.py +0 -0
  30. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tap_belvo/tap.py +0 -0
  31. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tests/__init__.py +0 -0
  32. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tests/conftest.py +0 -0
  33. {tap_belvo-0.1.0 → tap_belvo-0.2.0}/tests/test_core.py +0 -0
@@ -29,7 +29,7 @@ jobs:
29
29
  id-token: write
30
30
 
31
31
  steps:
32
- - uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
32
+ - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
33
33
  with:
34
34
  name: Packages
35
35
  path: dist
@@ -30,11 +30,11 @@ concurrency:
30
30
  env:
31
31
  FORCE_COLOR: 1
32
32
  # renovate: datasource=pypi depName=uv
33
- UV_VERSION: 0.6.10
33
+ UV_VERSION: 0.7.8
34
34
  # renovate: datasource=pypi depName=tox
35
- TOX_VERSION: 4.25.0
35
+ TOX_VERSION: 4.26.0
36
36
  # renovate: datasource=pypi depName=tox-uv
37
- TOX_UV_VERSION: 1.25.0
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@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
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@22695119d769bdb6f7032ad67b9bca0ef8c4a174 # v5.4.0
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@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
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.5.1"
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.2"
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.6.10"
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.1.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.45.3
23
+ Requires-Dist: singer-sdk~=0.46.4
23
24
  Description-Content-Type: text/markdown
24
25
 
25
- # `tap-belvo`
26
+ # tap-belvo
26
27
 
27
28
  Singer tap for Belvo.
28
29
 
@@ -1,4 +1,4 @@
1
- # `tap-belvo`
1
+ # tap-belvo
2
2
 
3
3
  Singer tap for Belvo.
4
4
 
@@ -1,7 +1,7 @@
1
1
  [build-system]
2
2
  build-backend = "hatchling.build"
3
3
  requires = [
4
- "hatch-vcs==0.4",
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.45.3",
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.13"
85
+ max_supported_python = "3.14"
85
86
 
86
87
  [tool.pytest.ini_options]
87
88
  addopts = [ "-vvv" ]
88
- filterwarnings = [ "error" ]
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 = [
@@ -6,7 +6,7 @@ requires =
6
6
  env_list =
7
7
  dependencies
8
8
  typing
9
- 3.{9,10,11,12,13}
9
+ 3.{9,10,11,12,13,14}
10
10
 
11
11
  [testenv]
12
12
  runner = uv-venv-lock-runner