Fixed an installation issue with versionstools. Closes #181.

This commit is contained in:
Jannis Leidel
2012-01-10 14:51:25 +01:00
parent 89b734fd24
commit ee7336a405
4 changed files with 9 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
# following PEP 386, versiontools will pick it up # following PEP 386, versiontools will pick it up
__version__ = (1, 1, 1, "final", 0) __version__ = (1, 1, 2, "final", 0)

View File

@@ -1,6 +1,11 @@
Changelog Changelog
========= =========
v1.1.2
------
- Fixed an installation issue related to versiontools.
v1.1.1 v1.1.1
------ ------

View File

@@ -41,7 +41,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Django Compressor' project = u'Django Compressor'
copyright = u'2011, Django Compressor authors' copyright = u'2012, Django Compressor authors'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
@@ -50,7 +50,7 @@ copyright = u'2011, Django Compressor authors'
# The short X.Y version. # The short X.Y version.
version = '1.1' version = '1.1'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '1.1.1' release = '1.1.2'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@@ -126,6 +126,6 @@ setup(
'django-appconf >= 0.4', 'django-appconf >= 0.4',
], ],
setup_requires = [ setup_requires = [
'versiontools >= 1.6', 'versiontools >= 1.8.2',
], ],
) )