Skip to content

Commit f9ec82b

Browse files
committed
Fix CI workflow: Update to use modern pyproject.toml dev dependencies
- Replace dev_dependencies.txt with 'pip install -e .[dev]' - Ensures pytest and other dev tools are installed from pyproject.toml - Aligns CI with modern Python packaging standards
1 parent 5c6cdf8 commit f9ec82b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
python -m pip install flake8 black build
31-
if [ -f dev_dependencies.txt ]; then pip install -r dev_dependencies.txt; fi
31+
python -m pip install -e .[dev]
3232
3333
- name: Check format with black
3434
continue-on-error: true # TODO: fix detected formatting errors and remove this line.

0 commit comments

Comments
 (0)