Changes between Version 2 and Version 3 of ReleaseTestNewVersion


Ignore:
Timestamp:
Mar 18, 2025, 7:59:59 PM (12 days ago)
Author:
Natalia Bidart
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified ReleaseTestNewVersion

    v2 v3  
    1313fi
    1414
    15 PKG_TAR="https://www.djangoproject.com/download/$RELEASE_VERSION/tarball/"
    16 PKG_WHL="https://www.djangoproject.com/download/$RELEASE_VERSION/wheel/"
     15PKG_TAR=$(curl -Ls -o /dev/null -w '%{url_effective}' https://www.djangoproject.com/download/$RELEASE_VERSION/tarball/)
     16
     17PKG_WHL=$(curl -Ls -o /dev/null -w '%{url_effective}' https://www.djangoproject.com/download/$RELEASE_VERSION/wheel/)
    1718
    1819python3 -m venv django-pip
    1920. django-pip/bin/activate
    20 python -m pip install $PKG_TAR
     21python -m pip install --no-cache-dir $PKG_TAR
    2122django-admin startproject test_one
    2223cd test_one
     
    3334python3 -m venv django-pip-wheel
    3435. django-pip-wheel/bin/activate
    35 python -m pip install $PKG_WHL
     36python -m pip install --no-cache-dir $PKG_WHL
    3637django-admin startproject test_one
    3738cd test_one
Back to Top