Skip to content

Commit 056b866

Browse files
committed
feat: READMEにPoetryからuvへの移行とPythonバージョンの更新の追加
1 parent aadf6f5 commit 056b866

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,34 @@
88

99
### Prerequisites
1010

11-
- Python (3.12 or higher)
12-
- Poetry (1.8.3 or higher)
11+
- Python (3.13 or higher)
12+
- uv (0.8.2 or higher)
1313

1414
### Installation
1515

1616
```bash
17-
poetry install
17+
uv sync
1818
```
1919

2020
### Run Agent
2121

2222
```bash
23-
poetry run python ./adf_core_python/launcher.py
23+
uv run python ./adf_core_python/launcher.py
2424

2525
# get help
26-
poetry run python ./adf_core_python/launcher.py -h
26+
uv run python ./adf_core_python/launcher.py -h
2727
```
2828

2929
### Build
3030

3131
```bash
32-
poetry build
32+
uv build
3333
```
3434

3535
### Pre Commit
3636

3737
```bash
38-
poetry run task precommit
38+
uv run ruff format .
39+
uv run ruff check .
40+
uv run mypy .
3941
```

0 commit comments

Comments
 (0)