Skip to content

Commit

Permalink
DBT-780: Upgrade dbt-core version and dbt-impala adapater version to …
Browse files Browse the repository at this point in the history
…1.7 (#197)
  • Loading branch information
vamshikolanu authored May 4, 2024
1 parent 2a8d8ae commit a3aec0b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ The `dbt-impala` adapter allows you to use [dbt](https://www.getdbt.com/) along

### Requirements

Current version of dbt-impala use dbt-core 1.6.*. We are actively working on supporting the next version of dbt-core 1.7
Current version of dbt-impala use dbt-core 1.7.*. We are actively working on supporting the next version of dbt-core 1.8

Python >= 3.7
dbt-core == 1.6.*
dbt-core == 1.7.*

For development/testing or contribution to the dbt-impala, please follow [Contributing](CONTRIBUTING.md) guidelines.

Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/impala/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version = "1.6.0"
version = "1.7.0"
3 changes: 1 addition & 2 deletions dbt/adapters/impala/column.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

from dbt.adapters.base.column import Column
from dbt.dataclass_schema import dbtClassMixin
from hologram import JsonDict

Self = TypeVar("Self", bound="ImpalaColumn")

Expand Down Expand Up @@ -69,7 +68,7 @@ def convert_table_stats(raw_stats: Optional[str]) -> Dict[str, Any]:
table_stats[f"stats:{key}:include"] = True
return table_stats

def to_column_dict(self, omit_none: bool = True, validate: bool = False) -> JsonDict:
def to_column_dict(self, omit_none: bool = True, validate: bool = False):
original_dict = self.to_dict(omit_none=omit_none)

# If there are stats, merge them into the root of the dict
Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dbt-tests-adapter==1.6.*
dbt-tests-adapter==1.7.*
pre-commit~=2.21;python_version=="3.7"
pre-commit~=3.2;python_version>="3.8"
pytest
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _get_dbt_core_version():

package_name = "dbt-impala"
# make sure this always matches dbt/adapters/dbt_impala/__version__.py
package_version = "1.6.0"
package_version = "1.7.0"
description = """The Impala adapter plugin for dbt"""

dbt_core_version = _get_dbt_core_version()
Expand Down

0 comments on commit a3aec0b

Please sign in to comment.