Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/dynamic-tables/adap-821'…
Browse files Browse the repository at this point in the history
… into feature/dynamic-tables/adap-821
  • Loading branch information
mikealfare committed Sep 11, 2023
2 parents b80eab4 + f744052 commit 1fbbaab
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Dependencies-20230817-121652.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: "Dependencies"
body: "Bump mypy from 1.5.0 to 1.5.1"
time: 2023-08-17T12:16:52.00000Z
custom:
Author: dependabot[bot]
PR: 749
6 changes: 6 additions & 0 deletions .changes/unreleased/Dependencies-20230830-125448.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: "Dependencies"
body: "Update tox requirement from ~=4.10 to ~=4.11"
time: 2023-08-30T12:54:48.00000Z
custom:
Author: dependabot[bot]
PR: 759
6 changes: 6 additions & 0 deletions .changes/unreleased/Fixes-20230907-153305.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Fixes
body: changes expected value types to AnyInteger to take into account changes in core
time: 2023-09-07T15:33:05.133868-05:00
custom:
Author: McKnight-42
Issue: "762"
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ flake8~=6.1
flaky~=3.7
freezegun~=1.2
ipdb~=0.13.13
mypy==1.5.0 # patch updates have historically introduced breaking changes
mypy==1.5.1 # patch updates have historically introduced breaking changes
pip-tools~=7.3
pre-commit~=3.3
pre-commit-hooks~=4.4
Expand All @@ -23,7 +23,7 @@ pytest-dotenv~=0.5.2
pytest-logbook~=1.2
pytest-xdist~=3.3
pytz~=2023.3
tox~=4.10
tox~=4.11
types-pytz~=2023.3
types-requests~=2.31
twine~=4.0
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/adapter/expected_stats.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dbt.tests.util import AnyString, AnyFloat
from dbt.tests.util import AnyString, AnyInteger


def snowflake_stats():
Expand All @@ -13,7 +13,7 @@ def snowflake_stats():
"bytes": {
"id": "bytes",
"label": "Approximate Size",
"value": AnyFloat(),
"value": AnyInteger(),
"description": "Approximate size of the table as reported by Snowflake",
"include": True,
},
Expand Down

0 comments on commit 1fbbaab

Please sign in to comment.