Skip to content

Commit 96a92d8

Browse files
committed
Uses installable package for dev dependencies
Updates the installation of development dependencies in the linting workflow to use the installable package. This simplifies dependency management and aligns with standard Python packaging practices.
1 parent d04ced6 commit 96a92d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/lint_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Install dependencies
1212
run: |
1313
python -m pip install --upgrade pip
14-
pip install -r requirements-dev.txt
14+
pip install .[dev]
1515
- name: Lint with flake8
1616
run: flake8 ./patterns --count --show-source --statistics
1717
continue-on-error: true

0 commit comments

Comments
 (0)