Skip to content

Commit

Permalink
Merge pull request #2722 from genos/genos/fix-for-2347
Browse files Browse the repository at this point in the history
fix for 2347
  • Loading branch information
jtcohen6 authored Sep 1, 2020
2 parents 2cc2d97 + 81bf3da commit f55b257
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@

### Under the hood
- Added 3 more adapter methods that the new dbt-adapter-test suite can use for testing. ([#2492](https://github.com/fishtown-analytics/dbt/issues/2492), [#2721](https://github.com/fishtown-analytics/dbt/pull/2721))
- It is now an error to attempt installing `dbt` with a Python version less than 3.6. (resolves [#2347](https://github.com/fishtown-analytics/dbt/issues/2347))
- Check for Postgres relation names longer than 63 and throw exception. ([#2197](https://github.com/fishtown-analytics/dbt/issues/2197))


### Fixes
- dbt now validates the require-dbt-version field before it validates the dbt_project.yml schema ([#2638](https://github.com/fishtown-analytics/dbt/issues/2638), [#2726](https://github.com/fishtown-analytics/dbt/pull/2726))

Contributors:
- [@genos](https://github.com/genos) ([#2722](https://github.com/fishtown-analytics/dbt/pull/2722))


## dbt 0.18.0rc1 (August 19, 2020)

Expand Down
6 changes: 6 additions & 0 deletions core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
import os
import sys

if sys.version_info < (3, 6):
print('Error: dbt does not support this version of Python.')
print('Please upgrade to Python 3.6 or higher.')
sys.exit(1)


from setuptools import setup
try:
from setuptools import find_namespace_packages
Expand Down
6 changes: 6 additions & 0 deletions plugins/bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
import os
import sys

if sys.version_info < (3, 6):
print('Error: dbt does not support this version of Python.')
print('Please upgrade to Python 3.6 or higher.')
sys.exit(1)


from setuptools import setup
try:
from setuptools import find_namespace_packages
Expand Down
6 changes: 6 additions & 0 deletions plugins/postgres/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
import os
import sys

if sys.version_info < (3, 6):
print('Error: dbt does not support this version of Python.')
print('Please upgrade to Python 3.6 or higher.')
sys.exit(1)


from setuptools import setup
try:
from setuptools import find_namespace_packages
Expand Down
6 changes: 6 additions & 0 deletions plugins/redshift/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
import os
import sys

if sys.version_info < (3, 6):
print('Error: dbt does not support this version of Python.')
print('Please upgrade to Python 3.6 or higher.')
sys.exit(1)


from setuptools import setup
try:
from setuptools import find_namespace_packages
Expand Down
6 changes: 6 additions & 0 deletions plugins/snowflake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
import os
import sys

if sys.version_info < (3, 6):
print('Error: dbt does not support this version of Python.')
print('Please upgrade to Python 3.6 or higher.')
sys.exit(1)


from setuptools import setup
try:
from setuptools import find_namespace_packages
Expand Down
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
import os
import sys

if sys.version_info < (3, 6):
print('Error: dbt does not support this version of Python.')
print('Please upgrade to Python 3.6 or higher.')
sys.exit(1)


from setuptools import setup
try:
from setuptools import find_namespace_packages
Expand Down

0 comments on commit f55b257

Please sign in to comment.