Unverified Commit 445b7848 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #299846 from fabaff/dbt-core-bump

python311Packages.dbt-core: 1.7.10 -> 1.7.11
parents 15766b82 db2e5df9
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@

buildPythonPackage rec {
  pname = "dbt-bigquery";
  version = "1.7.6";
  version = "1.7.7";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -24,19 +24,19 @@ buildPythonPackage rec {
    owner = "dbt-labs";
    repo = "dbt-bigquery";
    rev = "refs/tags/v${version}";
    hash = "sha256-bF2++Bs4pvqA3GW2xJkRNa1HkqnHBbMnKHHjo1TWboM=";
    hash = "sha256-+UF49ReSxKQ8ouutOv1b9JcU/6CNk7Yw8f1/tlRvwnU=";
  };

  nativeBuildInputs = [
    pythonRelaxDepsHook
    setuptools
  ];

  pythonRelaxDeps = [
    "agate"
  ];

  propagatedBuildInputs = [
  build-system = [
    pythonRelaxDepsHook
    setuptools
  ];

  dependencies = [
    agate
    dbt-core
    google-cloud-bigquery
+9 −8
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@

buildPythonPackage rec {
  pname = "dbt-core";
  version = "1.7.10";
  version = "1.7.11";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -42,26 +42,27 @@ buildPythonPackage rec {
    owner = "dbt-labs";
    repo = "dbt-core";
    rev = "refs/tags/v${version}";
    hash = "sha256-0cKzQjAnj0JMrHyA/gOgYceM6g1URJFgQtp90m09Nkw=";
    hash = "sha256-r51aki1fuHfp6gWkzOMA92xFeM0MXFPrNq77aKTYYWA=";
  };

  sourceRoot = "${src.name}/core";

  nativeBuildInputs = [
    pythonRelaxDepsHook
    setuptools
  ];

  pythonRelaxDeps = [
    "agate"
    "click"
    "mashumaro"
    "networkx"
    "logbook"
    "pathspec"
    "urllib3"
  ];

  propagatedBuildInputs = [
  build-system = [
    pythonRelaxDepsHook
    setuptools
  ];

  dependencies = [
    agate
    cffi
    click
+2 −2
Original line number Diff line number Diff line
@@ -19,11 +19,11 @@ buildPythonPackage {

  env.DBT_PSYCOPG2_NAME = "psycopg2";

  nativeBuildInputs = [
  build-system = [
    setuptools
  ];

  propagatedBuildInputs = [
  dependencies = [
    agate
    dbt-core
    psycopg2
+4 −4
Original line number Diff line number Diff line
@@ -36,12 +36,12 @@ buildPythonPackage rec {
    "importlib-metadata"
  ];

  nativeBuildInputs = [
  build-system = [
    hatchling
    pythonRelaxDepsHook
  ];

  propagatedBuildInputs = [
  dependencies = [
    click
    dateutils
    importlib-metadata
@@ -63,9 +63,9 @@ buildPythonPackage rec {
  ];

  meta = with lib; {
    changelog = "https://github.com/dbt-labs/dbt-semantic-interfaces/releases/tag/v${version}";
    description = "shared interfaces used by dbt-core and MetricFlow projects";
    description = "Shared interfaces used by dbt-core and MetricFlow projects";
    homepage = "https://github.com/dbt-labs/dbt-semantic-interfaces";
    changelog = "https://github.com/dbt-labs/dbt-semantic-interfaces/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ pbsds ];
  };
+4 −4
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

buildPythonPackage rec {
  pname = "dbt-snowflake";
  version = "1.7.2";
  version = "1.7.3";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -19,14 +19,14 @@ buildPythonPackage rec {
    owner = "dbt-labs";
    repo = "dbt-snowflake";
    rev = "refs/tags/v${version}";
    hash = "sha256-OyUBqSNHMedCDsY280O8VAmxeyeF5J0snk5o6XhE2V4=";
    hash = "sha256-ksnLQdoXR8KVtYTFdlaWT8UYjAsLNyEVVap/QHtm+j8=";
  };

  nativeBuildInputs = [
  build-system = [
    setuptools
  ];

  propagatedBuildInputs = [
  dependencies = [
    dbt-core
    snowflake-connector-python
  ] ++ snowflake-connector-python.optional-dependencies.secure-local-storage;