.. _changelog:
Changelog
=========
1.1.7 (**2011-03-23**)
======================
news
----
fixes
-----
- fixed #140 freeze of python dateutil library, since new version is python2.x
incompatible
import sys
from rhodecode import get_version
from rhodecode import __platform__
from rhodecode import __license__
py_version = sys.version_info
if py_version < (2, 5):
raise Exception('RhodeCode requires python 2.5 or later')
@@ -13,23 +14,26 @@ requirements = [
"SQLAlchemy==0.6.6",
"Mako==0.4.0",
"vcs==0.1.11",
"pygments==1.4.0",
"mercurial==1.7.5",
"whoosh==1.3.4",
"celery==2.2.4",
"celery==2.2.5",
"babel",
"python-dateutil>=1.5.0,<2.0.0",
]
classifiers = ['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Pylons',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python', ]
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', ]
if py_version < (2, 6):
requirements.append("simplejson")
requirements.append("pysqlite")
if __platform__ in ('Linux', 'Darwin'):
@@ -42,16 +46,15 @@ data_files = []
#additional files that goes into package itself
package_data = {'rhodecode': ['i18n/*/LC_MESSAGES/*.mo', ], }
description = ('Mercurial repository browser/management with '
'build in push/pull server and full text search')
keywords = ' '.join (['rhodecode', 'rhodiumcode', 'mercurial', 'git',
keywords = ' '.join(['rhodecode', 'rhodiumcode', 'mercurial', 'git',
'repository management', 'hgweb replacement'
'hgwebdir', 'gitweb replacement', 'serving hgweb',
])
'hgwebdir', 'gitweb replacement', 'serving hgweb', ])
#long description
try:
readme_file = 'README.rst'
changelog_file = 'docs/changelog.rst'
long_description = open(readme_file).read() + '\n\n' + \
open(changelog_file).read()
@@ -75,13 +78,13 @@ packages = find_packages(exclude=['ez_se
setup(
name='RhodeCode',
version=get_version(),
description=description,
long_description=long_description,
keywords=keywords,
license='GPLv3',
license=__license__,
author='Marcin Kuzminski',
author_email='marcin@python-works.com',
url='http://rhodecode.org',
install_requires=requirements,
classifiers=classifiers,
setup_requires=["PasteScript>=1.6.3"],
@@ -105,12 +108,8 @@ setup(
main = pylons.util:PylonsInstaller
[paste.global_paster_command]
make-index = rhodecode.lib.indexers:MakeIndex
upgrade-db = rhodecode.lib.dbmigrate:UpgradeDb
celeryd=rhodecode.lib.celerypylons.commands:CeleryDaemonCommand
celerybeat=rhodecode.lib.celerypylons.commands:CeleryBeatCommand
camqadm=rhodecode.lib.celerypylons.commands:CAMQPAdminCommand
celeryev=rhodecode.lib.celerypylons.commands:CeleryEventCommand
""",
)
Status change: