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 39
39
pip install -U setuptools wheel
40
40
pip install -r requirements.txt
41
41
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
42
44
if [ "${{inputs.parser-backend}}" == "hiredis" ]; then
43
45
pip install "hiredis${{inputs.hiredis-version}}"
44
46
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}
21
21
source ${DESTENV} /bin/activate
22
22
pip install --upgrade --quiet pip
23
23
pip install --quiet -r dev_requirements.txt
24
+ pip uninstall -y redis # uninstall Redis package installed via redis-entraid
24
25
invoke devenv --endpoints=all-stack
25
26
invoke package
26
27
Original file line number Diff line number Diff line change 54
54
- name : run code linters
55
55
run : |
56
56
pip install -r dev_requirements.txt
57
+ pip uninstall -y redis # uninstall Redis package installed via redis-entraid
57
58
invoke linters
58
59
59
60
redis_version :
Original file line number Diff line number Diff line change 21
21
- name : Install dev tools
22
22
run : |
23
23
pip install -r dev_requirements.txt
24
+ pip uninstall -y redis # uninstall Redis package installed via redis-entraid
24
25
pip install build twine wheel
25
26
26
27
- name : Build package
You can’t perform that action at this time.
0 commit comments