Skip to content

Commit

Permalink
build(deps): bump the prod-deps group with 2 updates (#1578)
Browse files Browse the repository at this point in the history
* build(deps): bump the prod-deps group with 2 updates

Bumps the prod-deps group with 2 updates: [pydantic](https://github.com/pydantic/pydantic) and [google-api-python-client](https://github.com/googleapis/google-api-python-client).


Updates `pydantic` from 2.6.3 to 2.6.4
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.6.3...v2.6.4)

Updates `google-api-python-client` from 2.121.0 to 2.122.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Changelog](https://github.com/googleapis/google-api-python-client/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-api-python-client@v2.121.0...v2.122.0)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: google-api-python-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
...

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

* chore: mypy

Signed-off-by: Luka Peschke <[email protected]>

* pre-install setuptools

Signed-off-by: Luka Peschke <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Luka Peschke <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Luka Peschke <[email protected]>
  • Loading branch information
dependabot[bot] and lukapeschke authored Mar 13, 2024
1 parent 01e6b7b commit 122108d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install freetds-dev libsasl2-dev libpq-dev
pip install -U poetry virtualenv
pip install -U poetry virtualenv setuptools
poetry config virtualenvs.create false
- name: Install oracle dependencies
Expand Down
12 changes: 6 additions & 6 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion toucan_connectors/snowflake/snowflake_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ def model_json_schema(
cls,
by_alias: bool = True,
ref_template: str = DEFAULT_REF_TEMPLATE,
schema_generator: type[GenerateJsonSchema] = GenerateJsonSchema,
# mypy misinterprets type as the ToucanConnector.type field rather than the type keyword
schema_generator: type[GenerateJsonSchema] = GenerateJsonSchema, # type:ignore[valid-type]
mode: JsonSchemaMode = "validation",
) -> dict[str, Any]:
schema = super().model_json_schema(
Expand Down

0 comments on commit 122108d

Please sign in to comment.