Skip to content

Commit

Permalink
Updates to support upload distribution to PyPI (#28)
Browse files Browse the repository at this point in the history
Required the "b" to be dropped in the versionso that it would be
installed by PyPi.

Added toml file as required by twine.
  • Loading branch information
jlarue26 authored Oct 17, 2022
1 parent eac396e commit fbbf913
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbt/adapters/dremio/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.1.0b"
version = "1.1.0"
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from setuptools import find_namespace_packages, setup

package_name = "dbt-dremio"
package_version = "1.1.0b"
package_version = "1.1.0"
description = """The Dremio adapter plugin for dbt"""

setup(
Expand Down

0 comments on commit fbbf913

Please sign in to comment.