From 65dc366634b68c6fcd64a02521bf0df1e5b4f5be Mon Sep 17 00:00:00 2001 From: Tim Pellissier Date: Fri, 14 Nov 2025 13:08:09 -0800 Subject: [PATCH] Fix ci-pr.yml install --- .azdo/ci-pr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azdo/ci-pr.yaml b/.azdo/ci-pr.yaml index 2a2c566..5e1a715 100644 --- a/.azdo/ci-pr.yaml +++ b/.azdo/ci-pr.yaml @@ -22,7 +22,7 @@ steps: - script: | python -m pip install --upgrade pip python -m pip install flake8 black build - if [ -f dev_dependencies.txt ]; then pip install -r dev_dependencies.txt; fi + python -m pip install -e .[dev] displayName: 'Install dependencies' - script: |