File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 3939 pip install -U setuptools wheel
4040 pip install -r requirements.txt
4141 pip install -r dev_requirements.txt
42+ pip uninstall -y redis # uninstall Redis package installed via redis-entraid
43+ pip install -e . # install the working copy
4244 if [ "${{inputs.parser-backend}}" == "hiredis" ]; then
4345 pip install "hiredis${{inputs.hiredis-version}}"
4446 echo "PARSER_BACKEND=$(echo "${{inputs.parser-backend}}_${{inputs.hiredis-version}}" | sed 's/[^a-zA-Z0-9]/_/g')" >> $GITHUB_ENV
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ python -m venv ${DESTENV}
2121source ${DESTENV} /bin/activate
2222pip install --upgrade --quiet pip
2323pip install --quiet -r dev_requirements.txt
24+ pip uninstall -y redis # uninstall Redis package installed via redis-entraid
2425invoke devenv --endpoints=all-stack
2526invoke package
2627
Original file line number Diff line number Diff line change 5454 - name : run code linters
5555 run : |
5656 pip install -r dev_requirements.txt
57+ pip uninstall -y redis # uninstall Redis package installed via redis-entraid
5758 invoke linters
5859
5960 redis_version :
Original file line number Diff line number Diff line change 2121 - name : Install dev tools
2222 run : |
2323 pip install -r dev_requirements.txt
24+ pip uninstall -y redis # uninstall Redis package installed via redis-entraid
2425 pip install build twine wheel
2526
2627 - name : Build package
You can’t perform that action at this time.
0 commit comments