Skip to content

Commit 206abdb

Browse files
authored
Fix: remove references to nonexistent requirements-dev.txt (#123)
GETTING_STARTED.md, CONTRIBUTING.md and PROJECT_STRUCTURE.md instruct contributors to run 'pip install -r requirements-dev.txt', but that file does not exist, so setup fails at that step. All development tools (pytest, pytest-cov, black, flake8) are already provided by requirements.txt, so the extra install step is removed. PROJECT_STRUCTURE.md's dev-setup snippet now installs requirements.txt before the editable install so the documented flow works end to end.
1 parent ce7e2b7 commit 206abdb

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ Ready for something meatier? These issues close critical gaps in our production
7979
source venv/bin/activate
8080
pip install -r requirements.txt
8181
pip install -e .
82-
pip install -r requirements-dev.txt
8382
```
8483

8584
4. **Make your changes**

GETTING_STARTED.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ source venv/bin/activate # On Windows: venv\Scripts\activate
1818
# Install dependencies
1919
pip install --upgrade pip
2020
pip install -r requirements.txt
21-
pip install -r requirements-dev.txt
2221

2322
# Install in editable mode
2423
pip install -e .

PROJECT_STRUCTURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,8 @@ Post-processing (inference/)
280280

281281
1. **Set up development environment**
282282
```bash
283+
pip install -r requirements.txt
283284
pip install -e .
284-
pip install -r requirements-dev.txt
285285
```
286286

287287
2. **Run existing code**

0 commit comments

Comments
 (0)