File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,11 +59,12 @@ jobs:
5959 run : |
6060 python -m venv venv
6161 source venv/bin/activate
62- python -m pip install --upgrade pip setuptools wheel
62+ # python -m pip install --upgrade pip setuptools wheel
6363 pip install -r "${REQUIREMENTS_FILE}"
6464 # remove all django* packages from requirements (so we can re-install newer versions):
6565 pip list --format=freeze | grep -i '^django' | sed -E 's/[<=>@].*$//' | xargs -r pip uninstall -y
66- pip install -U -e -v ".[web]" # upgrade all packages to most recent ones
66+ pip install -U -e ".[web]" --no-cache-dir # upgrade all packages to most recent ones
67+ pipdeptree -r -p Django # see what django version and why
6768 # pip install -U --no-deps django # force django to latest possible
6869
6970 # Run Django migrations and pytest
You can’t perform that action at this time.
0 commit comments