File tree Expand file tree Collapse file tree 5 files changed +14
-5
lines changed
Expand file tree Collapse file tree 5 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1515 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1616
1717 - name : Install uv
18- uses : astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
18+ uses : astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
1919 with :
2020 python-version : " 3.11"
2121 enable-cache : true
Original file line number Diff line number Diff line change 2020 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121
2222 - name : Install uv
23- uses : astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
23+ uses : astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
2424 with :
2525 python-version : ${{ matrix.python-version }}
2626 enable-cache : true
2929 run : uv sync ${{ matrix.sync-extras }}
3030
3131 - name : Run Ruff
32- uses : astral-sh/ruff-action@0c50076f12c38c3d0115b7b519b54a91cb9cf0ad # v3.5.0
32+ uses : astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1
3333 with :
3434 args : check .
3535
Original file line number Diff line number Diff line change 2525
2626 - name : Install uv
2727 if : ${{ steps.release.outputs.release_created }}
28- uses : astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
28+ uses : astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
2929 with :
3030 python-version : " 3.11"
3131 enable-cache : true
Original file line number Diff line number Diff line change 2525 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2626
2727 - name : Install uv
28- uses : astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
28+ uses : astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
2929 with :
3030 python-version : ${{ matrix.python-version }}
3131 enable-cache : true
Original file line number Diff line number Diff line change @@ -29,18 +29,27 @@ StackOne AI provides a unified interface for accessing various SaaS tools throug
2929
3030``` bash
3131pip install stackone-ai
32+
33+ # Or with uv
34+ uv add stackone-ai
3235```
3336
3437### Optional Features
3538
3639``` bash
3740# Install with MCP server support (requires Python 3.10+)
41+ uv add ' stackone-ai[mcp]'
42+ # or
3843pip install ' stackone-ai[mcp]'
3944
4045# Install with CrewAI examples (requires Python 3.10+)
46+ uv add ' stackone-ai[examples]'
47+ # or
4148pip install ' stackone-ai[examples]'
4249
4350# Install everything
51+ uv add ' stackone-ai[mcp,examples]'
52+ # or
4453pip install ' stackone-ai[mcp,examples]'
4554```
4655
You can’t perform that action at this time.
0 commit comments