Skip to content

Commit

Permalink
Change python version in CI, set upper bound for dbt project version (#…
Browse files Browse the repository at this point in the history
…115)

* Change python version in CI, set upper bound for dbt project version

* Update changelog

* Use python3.8 explicitly

Co-authored-by: Jeremy Cohen <[email protected]>
  • Loading branch information
joellabes and jtcohen6 authored Dec 16, 2021
1 parent c58cc5e commit d17892b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

integration-redshift:
docker:
- image: circleci/python:3.6.13-stretch
- image: cimg/python:3.9.9
steps:
- checkout
- run:
Expand All @@ -19,7 +19,7 @@ jobs:

integration-snowflake:
docker:
- image: circleci/python:3.6.13-stretch
- image: cimg/python:3.9.9
steps:
- checkout
- run:
Expand All @@ -32,7 +32,7 @@ jobs:
environment:
BIGQUERY_SERVICE_KEY_PATH: "/home/circleci/bigquery-service-key.json"
docker:
- image: circleci/python:3.6.13-stretch
- image: cimg/python:3.9.9
steps:
- checkout
- run:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# dbt-external-tables v0.7.2
🚨 This is a compatibility release in preparation for `dbt-core` v1.0.0 (🎉). Projects using this version with `dbt-core` v1.0.x can expect to see a deprecation warning. This will be resolved in the next minor release.

### Fixes
- (BigQuery) Fix `create external tables` with multiple partitions, by including missing comma ([#114](https://github.com/dbt-labs/dbt-external-tables/pull/114))
- (Snowflake) Fix `auto_refresh` when not specified `False` ([#117](https://github.com/dbt-labs/dbt-external-tables/pull/117))

### Contributors
- [@stumelius](https://github.com/stumelius) ([#114](https://github.com/dbt-labs/dbt-external-tables/pull/114))
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '0.7.0'

config-version: 2

require-dbt-version: ">=0.20.0"
require-dbt-version: [">=0.20.0", "<1.1.0"]

source-paths: ["models"]
analysis-paths: ["analysis"]
Expand Down
2 changes: 1 addition & 1 deletion run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ echo "Setting up virtual environment"
VENV="venv/bin/activate"

if [[ ! -f $VENV ]]; then
python3 -m venv venv
python3.8 -m venv venv
. $VENV
pip install --upgrade pip setuptools
if [ $1 == 'databricks' ]
Expand Down

0 comments on commit d17892b

Please sign in to comment.