Skip to content

Commit

Permalink
Update redis-py requirement. Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
iamteem committed Jul 6, 2010
1 parent 792ee0a commit b78578d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
import os

version = '0.1.dev22'
version = '0.1.0'

try:
from setuptools import setup
Expand All @@ -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',
Expand Down

0 comments on commit b78578d

Please sign in to comment.