Skip to content

Commit 5c96413

Browse files
committed
udpate README + workflow web
1 parent 45ccce4 commit 5c96413

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/pytest-web.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)