Skip to content

Commit

Permalink
build(deps-dev): bump mypy from 1.5.1 to 1.7.0 (#1358)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump mypy from 1.5.1 to 1.7.0

Bumps [mypy](https://github.com/python/mypy) from 1.5.1 to 1.7.0.
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.5.1...v1.7.0)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

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

* chore: mypy

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 Nov 22, 2023
1 parent 4d82549 commit 82cad43
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 33 deletions.
59 changes: 30 additions & 29 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ python-graphql-client = ">=0.4.3,<1"
clickhouse-driver = ">=0.2.3,<1"
lxml = "4.9.1"
zeep = "^4.1.0"
mypy = "^1.5"
mypy = "^1.7"
pandas-stubs = "^2.1.1.230928"
types-requests = "^2.31.0.6"
types-simplejson = "^3.19.0.2"
Expand Down
2 changes: 1 addition & 1 deletion toucan_connectors/hubspot_private_app/hubspot_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import Any, Generator, Protocol, TypeAlias

import pandas as pd
from hubspot import HubSpot # type:ignore[import]
from hubspot import HubSpot # type:ignore[import-untyped]
from pydantic import BaseModel, Field, SecretStr

from toucan_connectors.pagination import build_pagination_info
Expand Down
2 changes: 1 addition & 1 deletion toucan_connectors/snowflake/snowflake_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,4 +471,4 @@ def get_model(self, db_name: str | None = None) -> list[TableInfo]:
]
)

return self.format_db_model(values) # type: ignore[arg-type]
return self.format_db_model(values)
2 changes: 1 addition & 1 deletion toucan_connectors/toucan_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from toucan_connectors.utils.datetime import sanitize_df_dates

try:
from bearer import Bearer # type: ignore[import]
from bearer import Bearer # type: ignore[import-untyped]
except ImportError:
pass

Expand Down

0 comments on commit 82cad43

Please sign in to comment.