Skip to content

Commit

Permalink
utils/external_packages.py: Update Django built to 1.4
Browse files Browse the repository at this point in the history
But stablish a minimum version of 1.3. This way systems
with Django at least 1.3 can use the distro installed
django instead of a newer one.

Signed-off-by: Lucas Meneghel Rodrigues <[email protected]>
  • Loading branch information
lmr committed Jun 5, 2012
1 parent 0d22188 commit 02c96af
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions utils/external_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,10 +556,11 @@ def _build_and_install(self, install_dir):


class DjangoPackage(ExternalPackage):
version = '1.3'
minimum_version = '1.3'
version = '1.4'
local_filename = 'Django-%s.tar.gz' % version
urls = ('http://www.djangoproject.com/download/%s/tarball/' % version,)
hex_sum = 'f8814d5e1412bb932318db5130260da5bf053ff7'
hex_sum = 'acc0b854bfbda29c74c1f818323139cf18b38eeb'

_build_and_install = ExternalPackage._build_and_install_from_package
_build_and_install_current_dir = (
Expand Down

0 comments on commit 02c96af

Please sign in to comment.