Skip to content

Commit

Permalink
fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Apr 14, 2023
1 parent d68273c commit 1ad4394
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
from setuptools import find_namespace_packages, setup
import os

from dbt.adapters.iris.__version__ import version as package_version
try:
from dbt.adapters.iris.__version__ import version as package_version
except ModuleNotFoundError:
package_version = "1.3.0"

package_name = "dbt-iris"
description = """The InterSystems IRIS adapter plugin for dbt"""
Expand Down

0 comments on commit 1ad4394

Please sign in to comment.