Skip to content

Commit a1a5997

Browse files
Fix issue with installing dependencies
1 parent 4c4da9e commit a1a5997

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
pip install -U pip
25-
pip install -r requirements.txt
25+
pip install ".[dev]"
2626
- name: Lint with ruff
2727
run: |
2828
ruff check

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
pip install -U pip
25-
pip install -r requirements.txt
25+
pip install ".[dev]"
2626
- name: Run all tests
2727
run: |
2828
pytest .

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ cd bolt-python-search-template
8282
python3 -m venv .venv
8383
source .venv/bin/activate
8484

85-
# Install the dependencies
86-
pip install .
85+
# Install all the dependencies
86+
pip install -e ".[dev]"
8787

8888
# Start your local server
8989
python3 app.py

0 commit comments

Comments
 (0)