From b78578d3fd395340f936439bcb985959b067ec3f Mon Sep 17 00:00:00 2001 From: Tim Medina Date: Tue, 6 Jul 2010 17:18:26 +0800 Subject: [PATCH] Update redis-py requirement. Bump version. --- README.rst | 8 ++++---- setup.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 65fc5cf..9a8f70f 100644 --- a/README.rst +++ b/README.rst @@ -12,13 +12,13 @@ easier access to Redis sets, lists, and sorted sets. Installation ------------ -Redisco requires latest version of redis-py so get it first. +Redisco requires redis-py 2.0.0 so get it first. - pip install git+http://github.com/andymccurdy/redis-py.git@master#egg=redis-py + pip install redis Then install redisco. - pip install git+http://github.com/iamteem/redisco.git@master#egg=redisco + pip install redisco Models @@ -282,7 +282,7 @@ interact with the key-value storage. By default, it connects to localhost:6379, selecting db 0. If you wish to specify settings: :: - + import redisco redisco.connection_setup(host='localhost', port=6380, db=10) diff --git a/setup.py b/setup.py index 929bbcb..6169315 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python import os -version = '0.1.dev22' +version = '0.1.0' try: from setuptools import setup @@ -26,7 +26,7 @@ def read(fname): packages=['redisco', 'redisco.models'], test_suite='tests.all_tests', classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License',