Skip to content

Commit

Permalink
no longer recommend pre flag
Browse files Browse the repository at this point in the history
  • Loading branch information
zzstoatzz committed Sep 3, 2024
1 parent eb0e40c commit 5e1e51a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
6 changes: 2 additions & 4 deletions docs/3.0/resources/upgrade-to-prefect-3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ Prefect 3 introduces exciting new features and improvements while maintaining co
To upgrade to Prefect 3, run:

```bash
pip install 'prefect>=3.0.0rc1' --pre
pip install -U prefect
```

Note that the `--pre` flag is required to install the release candidate until the final release is available.


If you self-host a Prefect server, run this command to update your database:

Expand All @@ -25,7 +23,7 @@ prefect server database upgrade
If you use a Prefect integration or extra, remember to upgrade it as well. For example:

```bash
pip install 'prefect[aws]>=3.0.0rc1' --pre
pip install 'prefect[aws]'
```

## Upgrade notes
Expand Down
2 changes: 0 additions & 2 deletions docs/integrations/prefect-azure/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ Refer to the prefect-azure API documentation linked in the sidebar to explore al

### Additional installation options

Add the `--pre` flag to install the latest pre-release version of the library for use with Prefect 3.

To use Blob Storage:

```bash
Expand Down
2 changes: 0 additions & 2 deletions docs/integrations/prefect-dbt/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,6 @@ Additional installation options for dbt Core with BigQuery, Snowflake, and Postg

#### Additional capabilities for dbt Core and Snowflake profiles

To install for Prefect 3, include the `--pre` flag.


```bash
pip install -U "prefect-dbt[snowflake]"
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_sdk_docs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Creates integration SDK documentation files for MkDocs
# Run from top level of Prefect repository
# Latest versions of Prefect integration libraries must be installed
# uv pip install "prefect[aws, azure, bitbucket, dask, databricks, dbt, docker, email, gcp, github, gitlab, kubernetes, ray, slack, snowflake, sqlalchemy]" --pre -U
# uv pip install "prefect[aws, azure, bitbucket, dask, databricks, dbt, docker, email, gcp, github, gitlab, kubernetes, ray, slack, snowflake, sqlalchemy]" -U
# Run mkdocs build to generate the documentation or mkdocs serve to preview
# Upload the site directory to Netlify to publish the documentation after building

Expand Down

0 comments on commit 5e1e51a

Please sign in to comment.