Skip to content

Commit

Permalink
Update integration library install instructions to show Prefect 2 and…
Browse files Browse the repository at this point in the history
… Prefect 3 (#14203)
  • Loading branch information
discdiver committed Jun 20, 2024
1 parent 3e424d5 commit 940197c
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 17 deletions.
18 changes: 14 additions & 4 deletions docs/integrations/prefect-aws/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,20 @@ For example, you can retrieve secrets using AWS Secrets Manager, read and write

### Install prefect-aws


```bash
pip install -U prefect-aws
```
Install or update to the latest version of the prefect-aws library and dependencies.

<Tabs>
<Tab title="Prefect 2">
```bash
pip install -U prefect-aws
```
</Tab>
<Tab title="Prefect 3">
```bash
pip install -U -pre prefect-aws
```
</Tab>
</Tabs>


### Register newly installed block types
Expand Down
36 changes: 29 additions & 7 deletions docs/integrations/prefect-azure/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,40 @@ For example, you can retrieve secrets, read and write Blob Storage objects, and

### Install prefect-azure


```bash
pip install -U prefect-azure
```
Install or update to the latest version of the prefect-azure library and dependencies.

<Tabs>
<Tab title="Prefect 2">
```bash
pip install -U prefect-azure
```
</Tab>
<Tab title="Prefect 3">
```bash
pip install -U -pre prefect-azure
```
</Tab>
</Tabs>


If necessary, see [additional installation options for Blob Storage, Cosmos DB, and ML Datastore](#additional-installation-options).

To install with all additional functionality, use the following command:

Install or update to the latest version of the prefect-aws library and dependencies.

```bash
pip install -U "prefect-azure[all_extras]"
```
<Tabs>
<Tab title="Prefect 2">
```bash
pip install -U prefect-azure[all_extras]
```
</Tab>
<Tab title="Prefect 3">
```bash
pip install -U -pre prefect-azure[all_extras]
```
</Tab>
</Tabs>


### Register newly installed block types
Expand Down Expand Up @@ -92,6 +112,8 @@ 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
17 changes: 14 additions & 3 deletions docs/integrations/prefect-bitbucket/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,20 @@ The prefect-bitbucket library makes it easy to interact with Bitbucket repositor
### Install prefect-bitbucket


```bash
pip install -U prefect-bitbucket
```
Install or update to the latest version of the prefect-bitbucket library and dependencies.

<Tabs>
<Tab title="Prefect 2">
```bash
pip install -U prefect-bitbucket
```
</Tab>
<Tab title="Prefect 3">
```bash
pip install -U -pre prefect-bitbucket
```
</Tab>
</Tabs>


### Register newly installed block types
Expand Down
17 changes: 14 additions & 3 deletions docs/integrations/prefect-dask/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,20 @@ The `prefect-dask` integration makes it easy to accelerate your flow runs with D

To install `prefect-dask`, run:

```bash
pip install -U prefect-dask
```
Install or update to the latest version of the prefect-dask library and dependencies.

<Tabs>
<Tab title="Prefect 2">
```bash
pip install -U prefect-dask
```
</Tab>
<Tab title="Prefect 3">
```bash
pip install -U -pre prefect-dask
```
</Tab>
</Tabs>

## Why use Dask?

Expand Down

0 comments on commit 940197c

Please sign in to comment.