Skip to content

Commit

Permalink
Change version to 2.5.1 because of problem reuploading to pypi.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Read committed Dec 17, 2015
1 parent aa138a4 commit e41cac2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -7,7 +7,7 @@
Changelog
---------

v2.5.0 2015-12-17
v2.5.1 2015-12-17
=================

Note: This version requires a requirements upgrade on source installations
Expand Down Expand Up @@ -66,6 +66,12 @@ Changes and deprecations
next minor version of CKAN will require Postgresql 9.2 or later.


v2.5.0 2015-12-17
=================

Cancelled release


v2.4.2 2015-12-17
=================

Expand Down
2 changes: 1 addition & 1 deletion ckan/__init__.py
@@ -1,4 +1,4 @@
__version__ = '2.5.0'
__version__ = '2.5.1'

__description__ = 'CKAN Software'
__long_description__ = \
Expand Down
5 changes: 5 additions & 0 deletions setup.py
@@ -1,3 +1,8 @@
# Avoid problem releasing to pypi from vagrant
import os
if os.environ.get('USER', '') == 'vagrant':
del os.link

try:
from setuptools import setup, find_packages
except ImportError:
Expand Down

0 comments on commit e41cac2

Please sign in to comment.