Skip to content

Commit

Permalink
Upgrade to version 1, just a small change.
Browse files Browse the repository at this point in the history
  • Loading branch information
andyreagan committed Feb 11, 2022
1 parent 0e84ef9 commit 033af7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion dbt/adapters/vertica/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@

from dbt.adapters.base import Credentials
from dbt.adapters.sql import SQLConnectionManager
from dbt.logger import GLOBAL_LOGGER as logger
from dbt.events import AdapterLogger
logger = AdapterLogger("vertica")

from dbt.contracts.connection import AdapterResponse
import dbt.exceptions

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pathlib

package_name = "dbt-vertica"
package_version = "0.21.1"
package_version = "1.0.0"
description = """The vertica adapter plugin for dbt (data build tool)"""

HERE = pathlib.Path(__file__).parent
Expand All @@ -29,12 +29,12 @@
]
},
install_requires=[
'dbt-core>=0.21.0,<1.0.0',
'dbt-core>=1.0.0',
'vertica-python>=0.10.0',
],
extras_require={
'dev': [
'pytest-dbt-adapter==0.5.0',
'pytest-dbt-adapter==0.6.0',
]
}
)

0 comments on commit 033af7f

Please sign in to comment.