Skip to content

Commit dca4bde

Browse files
committed
fix: update CI setup and installation instructions in README
- change how we use pip to install deps properly
1 parent f0a0984 commit dca4bde

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
uv sync
27-
uv sync requirements-dev.txt
27+
uv pip install .
28+
uv pip install .[dev]
2829
2930
- name: Run tests
3031
run: |

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ Development Installation
3535

3636
3. Install development dependencies:
3737
```bash
38-
pip install -e ".[dev]"
39-
pip install -r pyproject.toml -r requirements-dev.txt
38+
pip install .
39+
pip install .[dev]
40+
pip install -r pyproject.toml
4041
```
4142

4243
Usage

0 commit comments

Comments
 (0)