Skip to content

Commit f246cdd

Browse files
Jammy2211claude
authored andcommitted
fix: combine pip installs to prevent PyPI re-resolution in CI
Separate pip install calls cause pip to re-resolve dependencies from PyPI instead of using locally installed dev versions, which can pull in incompatible old packages. A single call resolves everything together. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent dc30a0c commit f246cdd

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ jobs:
3636
pip3 install setuptools
3737
pip3 install wheel
3838
pip3 install pytest coverage pytest-cov
39-
pip install ./PyAutoConf
40-
pip install ./PyAutoArray
41-
pip install ./PyAutoArray[optional]
39+
pip install ./PyAutoConf "./PyAutoArray[optional]"
4240
4341
- name: Extract branch name
4442
shell: bash

0 commit comments

Comments
 (0)