Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DbtProject] Remove experimental marker from DbtProject and preparer classes #22578

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/content/api/modules.json.gz
Binary file not shown.
Binary file modified docs/content/api/searchindex.json.gz
Binary file not shown.
Binary file modified docs/content/api/sections.json.gz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Optional, Sequence, Union

import yaml
from dagster._annotations import experimental, public
from dagster._annotations import public
from dagster._model import IHaveNew, dagster_model_custom
from dagster._utils import run_with_concurrent_update_guard

Expand All @@ -21,7 +21,6 @@ def using_dagster_dev() -> bool:
return bool(os.getenv("DAGSTER_IS_DEV_CLI"))


@experimental
class DbtProjectPreparer:
"""The abstract class of a preparer for a DbtProject representation.

Expand All @@ -46,7 +45,6 @@ def using_dagster_dev(self) -> bool:
return using_dagster_dev()


@experimental
class DagsterDbtProjectPreparer(DbtProjectPreparer):
def __init__(
self,
Expand Down Expand Up @@ -133,7 +131,6 @@ def _prepare_manifest(self, project: "DbtProject") -> None:
)


@experimental
@dagster_model_custom
class DbtProject(IHaveNew):
"""Representation of a dbt project and related settings that assist with managing the project preparation.
Expand Down