diff --git a/.changes/unreleased/Fixes-20241023-105729.yaml b/.changes/unreleased/Fixes-20241023-105729.yaml new file mode 100644 index 0000000..a409b78 --- /dev/null +++ b/.changes/unreleased/Fixes-20241023-105729.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: Pin build dependencies to final releases +time: 2024-10-23T10:57:29.951612-04:00 +custom: + Author: mikealfare + Issue: "169" diff --git a/pyproject.toml b/pyproject.toml index abf377c..a99177a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,11 +23,11 @@ classifiers = [ ] dependencies = [ "psycopg2-binary>=2.9,<3.0", - "dbt-adapters>=0.1.0a1,<2.0", + "dbt-adapters>=0.1.0,<2.0", # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency - "dbt-core>=1.8.0a1", + "dbt-core>=1.8.0", # installed via dbt-adapters but used directly - "dbt-common>=0.1.0a1,<2.0", + "dbt-common>=0.1.0,<2.0", "agate>=1.0,<2.0", ]