Skip to content

Commit

Permalink
Merge branch 'main' into execute-with-header-on-intermediate-queries
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare authored Aug 3, 2023
2 parents e82aa5a + b06d230 commit 0d8e4df
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Dependencies-20230711-002411.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: "Dependencies"
body: "Update black requirement from ~=23.3 to ~=23.7"
time: 2023-07-11T00:24:11.00000Z
custom:
Author: dependabot[bot]
PR: 815
6 changes: 6 additions & 0 deletions .changes/unreleased/Dependencies-20230717-000639.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: "Dependencies"
body: "Update pip-tools requirement from ~=6.14 to ~=7.0"
time: 2023-07-17T00:06:39.00000Z
custom:
Author: dependabot[bot]
PR: 831
6 changes: 6 additions & 0 deletions .changes/unreleased/Dependencies-20230721-010106.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: "Dependencies"
body: "Update ddtrace requirement from ~=1.16 to ~=1.17"
time: 2023-07-21T01:01:06.00000Z
custom:
Author: dependabot[bot]
PR: 839
6 changes: 6 additions & 0 deletions .changes/unreleased/Dependencies-20230803-131551.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: "Dependencies"
body: "Update pip-tools requirement from ~=7.0 to ~=7.2"
time: 2023-08-03T13:15:51.00000Z
custom:
Author: dependabot[bot]
PR: 851
6 changes: 6 additions & 0 deletions .changes/unreleased/Fixes-20230803-102915.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Fixes
body: Requiring Python >=3.8 enables walrus operator
time: 2023-08-03T10:29:15.371798-06:00
custom:
Author: cemsbr dbeatty10
Issue: "849"
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,4 +225,4 @@ jobs:
status: "failure"

secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DEV_CORE_ALERTS }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DEV_ADAPTER_ALERTS }}
6 changes: 3 additions & 3 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-tests-adapter&subdirectory=

# if version 1.x or greater -> pin to major version
# if version 0.x -> pin to minor
black~=23.3
black~=23.7
bumpversion~=0.6.0
click~=8.1
ddtrace~=1.16
ddtrace~=1.17
flake8~=6.1
flaky~=3.7
freezegun~=1.2
ipdb~=0.13.13
mypy==1.4.1 # patch updates have historically introduced breaking changes
pip-tools~=6.14
pip-tools~=7.2
pre-commit~=3.3
pre-commit-hooks~=4.4
pytest~=7.4
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
import sys

# require python 3.7 or newer
# require a supported version of Python
if sys.version_info < (3, 8):
print("Error: dbt does not support this version of Python.")
print("Please upgrade to Python 3.8 or higher.")
Expand Down Expand Up @@ -91,5 +91,5 @@ def _dbt_core_version(plugin_version: str) -> str:
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.7",
python_requires=">=3.8",
)

0 comments on commit 0d8e4df

Please sign in to comment.