Skip to content

Commit

Permalink
Merge pull request #29 from firebolt-db/hotfix_install_failure
Browse files Browse the repository at this point in the history
hotfix: nuke `setup.cfg` until we can full switch from `setup.py` to `setup.cfg`
  • Loading branch information
dataders authored Dec 7, 2021
2 parents f8c36f7 + 45d74c4 commit 9b68054
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 63 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog


## v.0.21.5

### Under the hood

- resolve unknown import error
## v.0.21.4

### Changes
Expand All @@ -11,6 +16,7 @@

- added GitHub templates for PRs and issues
- Added linting using Black, Flake8, and iSort. This necessitated the addition of a `setup.cfg` file, so an additional linter, `setup-cfg-fmt` was added to check that file. These linters are all pre-commit hooks, so will force any future commits to abide by our style. [#20](https://github.com/firebolt-db/dbt-firebolt/pull/20)
- indefinitely removed `setup.cfg` from project [#29](https://github.com/firebolt-db/dbt-firebolt/pull/29)

## v.0.21.3

Expand Down
6 changes: 1 addition & 5 deletions dbt/adapters/firebolt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
from dbt.adapters.base import AdapterPlugin

from dbt.adapters.firebolt.connections import (
FireboltConnectionManager,
FireboltCredentials,
)
from dbt.adapters.firebolt.connections import FireboltCredentials
from dbt.adapters.firebolt.impl import FireboltAdapter
from dbt.adapters.firebolt.relation import FireboltRelation
from dbt.include import firebolt

Plugin = AdapterPlugin(
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/firebolt/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.21.4'
version = '0.21.5'
3 changes: 2 additions & 1 deletion dbt/adapters/firebolt/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
from dbt.adapters.sql import SQLAdapter
from dbt.dataclass_schema import ValidationError, dbtClassMixin

from dbt.adapters.firebolt import FireboltConnectionManager, FireboltRelation
from dbt.adapters.firebolt.connections import FireboltConnectionManager
from dbt.adapters.firebolt.relation import FireboltRelation


@dataclass
Expand Down
56 changes: 0 additions & 56 deletions setup.cfg

This file was deleted.

0 comments on commit 9b68054

Please sign in to comment.