Changes between Version 2 and Version 3 of ReleaseTestNewVersion
- Timestamp:
- Mar 18, 2025, 7:59:59 PM (12 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified ReleaseTestNewVersion
v2 v3 13 13 fi 14 14 15 PKG_TAR="https://www.djangoproject.com/download/$RELEASE_VERSION/tarball/" 16 PKG_WHL="https://www.djangoproject.com/download/$RELEASE_VERSION/wheel/" 15 PKG_TAR=$(curl -Ls -o /dev/null -w '%{url_effective}' https://www.djangoproject.com/download/$RELEASE_VERSION/tarball/) 16 17 PKG_WHL=$(curl -Ls -o /dev/null -w '%{url_effective}' https://www.djangoproject.com/download/$RELEASE_VERSION/wheel/) 17 18 18 19 python3 -m venv django-pip 19 20 . django-pip/bin/activate 20 python -m pip install $PKG_TAR21 python -m pip install --no-cache-dir $PKG_TAR 21 22 django-admin startproject test_one 22 23 cd test_one … … 33 34 python3 -m venv django-pip-wheel 34 35 . django-pip-wheel/bin/activate 35 python -m pip install $PKG_WHL36 python -m pip install --no-cache-dir $PKG_WHL 36 37 django-admin startproject test_one 37 38 cd test_one