Skip to content

Commit

Permalink
Merge branch 'main' into feature/applied-state/get-catalog-by-object
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare authored Sep 14, 2023
2 parents 673e1c5 + cf04fd7 commit 9db81be
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 6 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/Dependencies-20230904-121823.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: "Dependencies"
body: "Update pre-commit requirement from ~=3.3 to ~=3.4"
time: 2023-09-04T12:18:23.00000Z
custom:
Author: dependabot[bot]
PR: 760
6 changes: 6 additions & 0 deletions .changes/unreleased/Dependencies-20230911-122237.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: "Dependencies"
body: "Update black requirement from ~=23.7 to ~=23.9"
time: 2023-09-11T12:22:37.00000Z
custom:
Author: dependabot[bot]
PR: 765
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"
8 changes: 4 additions & 4 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@ git+https://github.com/dbt-labs/dbt-core.git@paw/get-catalog-relations#egg=dbt-t

# if version 1.x or greater -> pin to major version
# if version 0.x -> pin to minor
black~=23.7
black~=23.9
bumpversion~=0.6.0
click~=8.1
ddtrace~=1.18
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~=3.4
pre-commit-hooks~=4.4
pytest~=7.4
pytest-csv~=3.0
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 9db81be

Please sign in to comment.