Skip to content

Commit

Permalink
fix for newer versions of pip
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarkhau committed Nov 10, 2024
1 parent fbcb22c commit f37c0c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ test_compat: $(COMPAT_TEST_FILES)
IFS=' ' read -r -a env_pys <<< "$(CONDA_ENV_BIN_PYTHON_PATHS)"; \
for i in $${!env_pys[@]}; do \
env_py=$${env_pys[i]}; \
$${env_py} -m pip uninstall --yes -qq bumpver; \
if $${env_py} -m pip freeze | grep -q bumpver; then \
$${env_py} -m pip uninstall --yes bumpver; \
fi; \
$${env_py} -m pip install --upgrade build/test_wheel/*.whl; \
ENABLE_BACKTRACE=0 PYTHONPATH="" ENV=$${ENV-dev} \
$${env_py} -m pytest \
Expand Down

0 comments on commit f37c0c6

Please sign in to comment.