Skip to content

Commit

Permalink
[DbtProject] Remove experimental marker from DbtProject and preparer …
Browse files Browse the repository at this point in the history
…classes (#22578)

## Summary & Motivation

Removes experimental marker from DbtProject, `DbtProjectPreparer` and
`DagsterDbtProjectPreparer`.

## How I Tested These Changes

Tested locally and no more experimental warnings for DbtProject.
  • Loading branch information
maximearmstrong authored Jun 27, 2024
1 parent cc889e4 commit f5f246c
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
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

1 comment on commit f5f246c

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagster-docs ready!

✅ Preview
https://dagster-docs-82xt7fint-elementl.vercel.app
https://master.dagster.dagster-docs.io

Built with commit f5f246c.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.