airajena commented on code in PR #22: URL: https://github.com/apache/fineract-business-intelligence/pull/22#discussion_r3476477442
########## dbt/requirements.txt: ########## @@ -15,4 +15,4 @@ # specific language governing permissions and limitations # under the License. -dbt-postgres>=1.10.0,<2.0 +dbt-postgres>=1.8.0,<2.0.0a1 Review Comment: The original pin >=1.10.0,<2.0 was unintentionally allowing pip to resolve to dbt-postgres==2.0.0a1 (dbt Fusion alpha) because pip treats 2.0.0a1 as less than 2.0.0 and therefore within the <2.0 bound. dbt Fusion dropped PostgreSQL adapter support in this alpha, causing dbt run to fail inside the container. Changed to <2.0.0a1 to explicitly exclude the pre-release and keep pip on the latest stable 1.x release. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
