Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hotfix: nuke setup.cfg until we can full switch from setup.py to setup.cfg #29

Merged
merged 2 commits into from
Dec 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.