Skip to content

Commit e345ce7

Browse files
authored
Merge branch 'main' into remove-async
2 parents a7a546f + d94096b commit e345ce7

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
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

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
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
@@ -29,7 +29,7 @@ jobs:
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

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
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

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
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

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,27 @@ StackOne AI provides a unified interface for accessing various SaaS tools throug
2929

3030
```bash
3131
pip 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
3843
pip install 'stackone-ai[mcp]'
3944

4045
# Install with CrewAI examples (requires Python 3.10+)
46+
uv add 'stackone-ai[examples]'
47+
# or
4148
pip install 'stackone-ai[examples]'
4249

4350
# Install everything
51+
uv add 'stackone-ai[mcp,examples]'
52+
# or
4453
pip install 'stackone-ai[mcp,examples]'
4554
```
4655

0 commit comments

Comments
 (0)