mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-16 20:00:23 +00:00
Bump version for 1.2.0.
This commit is contained in:
parent
4f35a3e4f0
commit
e86a2e2e2b
2 changed files with 7 additions and 22 deletions
|
|
@ -4,6 +4,9 @@ CHANGES
|
|||
tip (unreleased)
|
||||
----------------
|
||||
|
||||
1.2.0 (2013.01.27)
|
||||
------------------
|
||||
|
||||
- Moved primary development from `Bitbucket`_ to `GitHub`_. Bitbucket mirror
|
||||
will continue to receive updates; Bitbucket issue tracker will be closed once
|
||||
all issues tracked in it are resolved.
|
||||
|
|
|
|||
26
setup.py
26
setup.py
|
|
@ -1,32 +1,14 @@
|
|||
from setuptools import setup, find_packages
|
||||
import subprocess
|
||||
import os.path
|
||||
|
||||
try:
|
||||
# don't get confused if our sdist is unzipped in a subdir of some
|
||||
# other hg repo
|
||||
if os.path.isdir('.hg'):
|
||||
p = subprocess.Popen(['hg', 'parents', r'--template={rev}\n'],
|
||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
if not p.returncode:
|
||||
fh = open('HGREV', 'w')
|
||||
fh.write(p.communicate()[0].splitlines()[0])
|
||||
fh.close()
|
||||
except (OSError, IndexError):
|
||||
pass
|
||||
|
||||
try:
|
||||
hgrev = open('HGREV').read()
|
||||
except IOError:
|
||||
hgrev = ''
|
||||
|
||||
long_description = (open('README.rst').read() +
|
||||
|
||||
long_description = (open('README.rst').read() +
|
||||
open('CHANGES.rst').read() +
|
||||
open('TODO.rst').read())
|
||||
|
||||
|
||||
setup(
|
||||
name='django-model-utils',
|
||||
version='1.1.0.post%s' % hgrev,
|
||||
version='1.2.0',
|
||||
description='Django model mixins and utilities',
|
||||
long_description=long_description,
|
||||
author='Carl Meyer',
|
||||
|
|
|
|||
Loading…
Reference in a new issue