Skip to content

Commit

Permalink
chore(deps): bump singer-sdk from 0.42.1 to 0.43.1 (#90)
Browse files Browse the repository at this point in the history
* chore(deps): bump singer-sdk from 0.42.1 to 0.43.0

Bumps [singer-sdk](https://github.com/meltano/sdk) from 0.42.1 to 0.43.0.
- [Release notes](https://github.com/meltano/sdk/releases)
- [Changelog](https://github.com/meltano/sdk/blob/main/CHANGELOG.md)
- [Commits](meltano/sdk@v0.42.1...v0.43.0)

---
updated-dependencies:
- dependency-name: singer-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump to 0.43.1

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Edgar Ramírez Mondragón <[email protected]>
  • Loading branch information
dependabot[bot] and edgarrmondragon authored Dec 10, 2024
1 parent 87c1ef8 commit 3ffca2d
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 19 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ name: Test tap-hubspot

on: [push]

env:
FORCE_COLOR: 1

jobs:
linting:

Expand Down Expand Up @@ -32,8 +35,14 @@ jobs:
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
strategy:
max-parallel: 2
matrix:
python-version: [3.13]
python-version:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
- "3.9"

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ permissions:
contents: write # Upload artifacts to release
id-token: write # Use PyPI trusted publishing

env:
FORCE_COLOR: 1

jobs:
build:
name: Build and Inspect
Expand Down
30 changes: 15 additions & 15 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ python = ">=3.9"
backports-datetime-fromisoformat = {version = "==2.0.2", python = "<3.11"}
fs-s3fs = { version = "~=1.1.1", optional = true }
requests = "==2.32.2"
singer-sdk = { version="~=0.42.0" }
singer-sdk = { version="~=0.43.1" }

[tool.poetry.group.dev.dependencies]
pytest = ">=7"
singer-sdk = { version="~=0.42.0", extras = ["testing"] }
singer-sdk = { version="~=0.43.0", extras = ["testing"] }

[tool.poetry.extras]
s3 = ["fs-s3fs"]
Expand Down
2 changes: 1 addition & 1 deletion tap_hubspot/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def prepare_request( # noqa: D102
if self._is_incremental_search(context):
# Search endpoints use POST request
self.path = self.incremental_path # type: ignore[attr-defined]
self.rest_method = "POST"
self.http_method = "POST"
return super().prepare_request(context, next_page_token)

def prepare_request_payload(
Expand Down

0 comments on commit 3ffca2d

Please sign in to comment.