Metadata-Version: 2.1
Name: dagster-insights
Version: 0.0.12
Summary: Latest pre-release patches for dagster_cloud.dagster_insights.
Author: Dagster Labs
License: Released under the same license as dagster-cloud: https://pypi.org/project/dagster-cloud/
        
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: dagster-cloud

# Pre-release patches for dagster_insights

This package contains pre-release fixes and optimizations for the official `dagster_cloud.dagster_insights` module included in the [dagster-cloud](https://pypi.org/project/dagster-cloud/) package. To use the official version, run `pip install dagster-cloud` and import it as follows:

```
from dagster_cloud import dagster_insights
```

To enable the pre-release patches from this package, run `pip install dagster-insights` and import this module before importing `dagster_cloud.dagster_insights`:

```
import dagster_insights_prerelease  # Patches dagster_cloud.dagster_insights
from dagster_cloud import dagster_insights
```

This allows testing against a pre-release version of `dagster_insights` and provides a faster turnaround time for fixes and optimizations. All reliable fixes are eventually merged into `dagster_cloud.dagster_insights` and available in the official release.
