CARVIEW |
Select Language
HTTP/2 200
server: nginx
content-type: text/html;charset=utf-8
cache-control: must-revalidate
expires: Fri, 01 Jan 1999 00:00:00 GMT
set-cookie: trac_form_token=7e66051629012277be1f383c; HttpOnly; Path=/; Secure
set-cookie: trac_session=d2777370ee50eb2a6b3d0c67; expires=Tue, 21 Oct 2025 17:10:21 GMT; HttpOnly; Path=/; Secure
strict-transport-security: max-age=31536000; includeSubDomains; preload
permissions-policy: interest-cohort=()
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
accept-ranges: bytes
via: 1.1 varnish, 1.1 varnish
date: Wed, 23 Jul 2025 17:10:22 GMT
x-served-by: cache-fra-eddf8230115-FRA, cache-bom-vanm7210041-BOM
x-cache: MISS, MISS
x-cache-hits: 0, 0
x-timer: S1753290622.880141,VS0,VE339
vary: Accept-Encoding
ReleaseTestNewVersion – Django
Back to Top
Django
The web framework for perfectionists with deadlines.
Issues
This bash script can be used to test new versions for a Django release. Provides a minimal sanity check on the tarball and wheel artifacts.
#! /bin/bash set -xue cd /tmp RELEASE_VERSION="${RELEASE_VERSION}" if [[ -z "$RELEASE_VERSION" ]]; then echo "Please set RELEASE_VERSION as env var" exit 1 fi PKG_TAR=$(curl -Ls -o /dev/null -w '%{url_effective}' https://www.djangoproject.com/download/$RELEASE_VERSION/tarball/) PKG_WHL=$(curl -Ls -o /dev/null -w '%{url_effective}' https://www.djangoproject.com/download/$RELEASE_VERSION/wheel/) python3 -m venv django-pip . django-pip/bin/activate python -m pip install --no-cache-dir $PKG_TAR django-admin startproject test_one cd test_one ./manage.py --help # Ensure executable bits python manage.py migrate python manage.py runserver deactivate cd .. rm -rf test_one rm -rf django-pip python3 -m venv django-pip-wheel . django-pip-wheel/bin/activate python -m pip install --no-cache-dir $PKG_WHL django-admin startproject test_one cd test_one ./manage.py --help # Ensure executable bits python manage.py migrate python manage.py runserver deactivate cd .. rm -rf test_one rm -rf django-pip-wheel
Last modified
4 months ago
Last modified on Mar 18, 2025, 7:59:59 PM
Note:
See TracWiki
for help on using the wiki.
Download in other formats:
Django Links
Learn More
Get Involved
Follow Us
- Hosting by In-kind donors
- Design by Threespot &
© 2005-2025 Django SoftwareFoundation unless otherwise noted. Django is a registered trademark of the Django Software Foundation.